PointGroupIsPointLabelStyleOverridden Property |
Gets or sets whether the point label style for points in the PointGroup is overridden.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic bool IsPointLabelStyleOverridden { get; set; }
Public Property IsPointLabelStyleOverridden As Boolean
Get
Set
public:
property bool IsPointLabelStyleOverridden {
bool get ();
void set (bool value);
}
Property Value
Boolean
Example1if (pointGroup.IsPointLabelStyleOverridden)
2{
3 write("PointGroup point label style is overridden.\n");
4}
1If pointGroup__1.IsPointLabelStyleOverridden Then
2 write("PointGroup point label style is overridden." & vbLf)
3End If
No code example is currently available or this language may not be supported.
See Also