Gets the collection of all profile styles in the database.

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

Syntax

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

Examples

CopyC#
1// get first style in the document
2ObjectId styleId = doc.Styles.ProfileStyles[0];

See Also