Gets the collection of all profile label set styles in the database.

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

Syntax

C#
public ProfileLabelSetStyleCollection ProfileLabelSetStyles { get; }
Visual Basic
Public ReadOnly Property ProfileLabelSetStyles As ProfileLabelSetStyleCollection
	Get
Visual C++
public:
property ProfileLabelSetStyleCollection^ ProfileLabelSetStyles {
	ProfileLabelSetStyleCollection^ get ();
}

Examples

CopyC#
1// get the first label set style in the document
2ObjectId labelSetId = doc.Styles.LabelSetStyles.ProfileLabelSetStyles[0];

See Also