Returns an ObjectIdCollection of band label groups on the SectionView with a specified type.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0
Syntax
C# |
---|
public static ObjectIdCollection GetAvailableLabelGroupIds(
Type bandLabelGroupClassType,
ObjectId sectionViewId,
bool includeDerived
) |
Visual Basic |
---|
Public Shared Function GetAvailableLabelGroupIds ( _
bandLabelGroupClassType As Type, _
sectionViewId As ObjectId, _
includeDerived As Boolean _
) As ObjectIdCollection |
Visual C++ |
---|
public:
static ObjectIdCollection^ GetAvailableLabelGroupIds(
Type^ bandLabelGroupClassType,
ObjectId sectionViewId,
bool includeDerived
) |
Parameters
- bandLabelGroupClassType
- Type: System..::..Type
The type of the band label group class.
- sectionViewId
- Type: ObjectId
The ObjectId of the SectionView where the band label groups are located.
- includeDerived
- Type: System..::..Boolean
Indicates whether to include the derived types of bandLabelGroupClassType.
Exceptions
Exception | Condition |
---|
System..::..ArgumentException |
Thrown when:
- The classType is not type or derived type of SectionBandLabelGroup.
- The sectionViewId is invalid.
|
See Also