Gets the collection of all profile label set styles in the database.
Namespace: Autodesk.Civil.DatabaseServices.Styles
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.280
Syntax
C#
public ProfileLabelSetStyleCollection ProfileLabelSetStyles { get; }
VB
Public ReadOnly Property ProfileLabelSetStyles As ProfileLabelSetStyleCollection Get
C++
public: property ProfileLabelSetStyleCollection^ ProfileLabelSetStyles { ProfileLabelSetStyleCollection^ get (); }
Property Value
ProfileLabelSetStyleCollectionExample
1// get the first label set style in the document 2ObjectId labelSetId = doc.Styles.LabelSetStyles.ProfileLabelSetStyles[0];