Table of Contents

Method GetInt

Namespace
Anvil.API
Assembly
NWN.Anvil.dll

GetInt(int, string)

Gets the specified int value.

public int? GetInt(int rowIndex, string columnName)

Parameters

rowIndex int

The index of the row to query.

columnName string

The name/label of the column to query.

Returns

int?

The associated value. null if no value is set.

GetInt(int, int)

Gets the specified int value.

public int? GetInt(int rowIndex, int columnIndex)

Parameters

rowIndex int

The index of the row to query.

columnIndex int

The index of the column to query.

Returns

int?

The associated value. null if no value is set.