Method GetEnum
GetEnum<T>(int, string)
Gets the specified StrRef value.
public T? GetEnum<T>(int rowIndex, string columnName) where T : struct, Enum
Parameters
rowIndexintThe index of the row to query.
columnNamestringThe name/label of the column to query.
Returns
- T?
The associated value. null if no value is set.
Type Parameters
T
GetEnum<T>(int, int)
Gets the specified enum value value.
public T? GetEnum<T>(int rowIndex, int columnIndex) where T : struct, Enum
Parameters
Returns
- T?
The associated value. null if no value is set.
Type Parameters
T