Revit 2021 API |
TableView..::..GetCalculatedValueName Method |
TableView Class See Also |
Gets the calculated value name for a cell from the template view.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 21.0.0.0 (21.0.0.0)
Syntax
C# |
---|
public string GetCalculatedValueName( SectionType sectionType, int row, int column ) |
Visual Basic |
---|
Public Function GetCalculatedValueName ( _ sectionType As SectionType, _ row As Integer, _ column As Integer _ ) As String |
Visual C++ |
---|
public: String^ GetCalculatedValueName( SectionType sectionType, int row, int column ) |
Parameters
- sectionType
- Type: Autodesk.Revit.DB..::..SectionType
The section type.
- row
- Type: System..::..Int32
The row.
- column
- Type: System..::..Int32
The column.
Return Value
The name of the calculated value.
Exceptions
Exception | Condition |
---|---|
Autodesk.Revit.Exceptions..::..ArgumentException | The sectionType is not a valid type for this view. |
Autodesk.Revit.Exceptions..::..ArgumentOutOfRangeException | The given row number row is invalid. -or- The given column number column is invalid. -or- A value passed for an enumeration argument is not a member of that enumeration |