Gets all sub-entity labels managed by this label group.

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

Syntax

C#
public override IList<LabelGroupSubEntity> SubEntities { get; }
Visual Basic
Public Overrides ReadOnly Property SubEntities As IList(Of LabelGroupSubEntity)
	Get
Visual C++
public:
virtual property IList<LabelGroupSubEntity^>^ SubEntities {
	IList<LabelGroupSubEntity^>^ get () override;
}

Remarks

Note: some sub-entity labels are not shown on UI and an exception will be thrown when trying to get the anchor info or label position of this kind of sub-entity labels because they don't have valid anchor info. If a sub-entity label's related point code doesn't set a valid label style in code set style, then it won't be shown on UI and don't have valid anchor info. For this case, suggest to call another method getDisplayedSubEntities() to get all displayed sub-entity labels that all have valid anchor info.

See Also