| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Drawing.Drawing2D.PathData.cs
- //
- // Authors:
- // Dennis Hayes ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) 2002/3 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Drawing2D
- {
- /// <summary>
- /// Summary description for PathData.
- /// </summary>
- public sealed class PathData
- {
- PointF[] points = null;
- byte[] types = null;
- public PathData()
- {
- }
- public PointF[] Points {
- get { return points; }
- set { points = value; }
- }
- public byte[] Types {
- get { return types; }
- set { types = value; }
- }
- }
- }
|