GetAvailableParameterCategories Method


Get all available parameter categories.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 24.0.0.0 (24.0.0.0)

Syntax

C#
public IList<ElementId> GetAvailableParameterCategories(
	SectionType sectionType,
	int row
)
Visual Basic
Public Function GetAvailableParameterCategories ( _
	sectionType As SectionType, _
	row As Integer _
) As IList(Of ElementId)
Visual C++
public:
IList<ElementId^>^ GetAvailableParameterCategories(
	SectionType sectionType, 
	int row
)

Parameters

sectionType
Type: Autodesk.Revit.DBSectionType
The section the row lies in.
row
Type: SystemInt32
The row.

Return Value

The available parameter categories.

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentException The sectionType is not a valid type for this view.
Autodesk.Revit.ExceptionsArgumentOutOfRangeException The given row number row is invalid. -or- A value passed for an enumeration argument is not a member of that enumeration

See Also