Gets or sets whether the point style for points in the PointGroup is overridden.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public bool IsPointStyleOverridden { get; set; }
Visual Basic
Public Property IsPointStyleOverridden As Boolean
	Get
	Set
Visual C++
public:
property bool IsPointStyleOverridden {
	bool get ();
	void set (bool value);
}

Examples

CopyC#
1if (pointGroup.IsPointStyleOverridden)
2{
3    write("PointGroup point style is overridden.\n");
4}
CopyVB.NET
1If pointGroup__1.IsPointStyleOverridden Then
2  write("PointGroup point style is overridden." & vbLf)
3End If

See Also