PointGroupPointLabelStyleId Property

Specifies the point label style to be referenced by a point that is created using the description key.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.7.0.1190
Syntax
public ObjectId PointLabelStyleId { get; set; }

Property Value

ObjectId
Exceptions
ExceptionCondition
Thrown when the ObjectId is not a LabelStyle object.
Remarks
Object type is LabelStyle. ObjectId.Null is a valid value.
Example
1ObjectId pointLabelStyleId = pointGroup.PointLabelStyleId;
2LabelStyle pointLabelStyle = pointLabelStyleId.GetObject(OpenMode.ForRead) as LabelStyle;
3write("Point Label style for PointGroup: " + pointLabelStyle.Name + "\n");
See Also