Table of Contents

Method GetEnum

Namespace
Anvil.API
Assembly
NWN.Anvil.dll

GetEnum<T>(int, string)

Gets the specified StrRef value.

public T? GetEnum<T>(int rowIndex, string columnName) where T : struct, Enum

Parameters

rowIndex int

The index of the row to query.

columnName string

The 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

rowIndex int

The index of the row to query.

columnIndex int

The index of the column to query.

Returns

T?

The associated value. null if no value is set.

Type Parameters

T