PointGroupPointLabelStyleId Property |
Specifies the point label style to be referenced by a point that is created using the description key.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic ObjectId PointLabelStyleId { get; set; }
Public Property PointLabelStyleId As ObjectId
Get
Set
public:
property ObjectId PointLabelStyleId {
ObjectId get ();
void set (ObjectId value);
}
Property Value
ObjectId
ExceptionsException | Condition |
---|
|
Thrown when the ObjectId is not a LabelStyle object.
|
Remarks
Object type is LabelStyle. ObjectId.Null is a valid value.
Example1ObjectId pointLabelStyleId = pointGroup.PointLabelStyleId;
2LabelStyle pointLabelStyle = pointLabelStyleId.GetObject(OpenMode.ForRead) as LabelStyle;
3write("Point Label style for PointGroup: " + pointLabelStyle.Name + "\n");
1Dim pointLabelStyleId As ObjectId = pointGroup__1.PointLabelStyleId
2Dim pointLabelStyle As LabelStyle = TryCast(pointLabelStyleId.GetObject(OpenMode.ForRead), LabelStyle)
3write("Point Label style for PointGroup: " + pointLabelStyle.Name & vbLf)
No code example is currently available or this language may not be supported.
See Also