Gets the current PolygonData object. This property is only intended for use in the property browsers. It is not useful in code.

Namespace:  C1.Win.C1Chart
Assembly:  C1.Win.C1Chart.2 (in C1.Win.C1Chart.2.dll)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[BrowsableAttribute(true)]
[TypeConverterAttribute(typeof(TypeConverter))]
public PolygonData PolygonCoords { get; }
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
<BrowsableAttribute(True)> _
<TypeConverterAttribute(GetType(TypeConverter))> _
Public ReadOnly Property PolygonCoords As PolygonData
	Get

Remarks

As a convenience, all both X and Y coordinate arrays can be edited at the same time in a property browser by editing the PolygonCoords property. Editing is performed in the format appropriate for the DataType of each of the X and Y arrays.

The PolygonCoords property is intended to be used only within property browsers, as it is merely a placeholder to allow invocation of the editor. The value returned is the object of which it is a part.

See Also