Table of Contents

Method GetBool

Namespace
Anvil.API
Assembly
NWN.Anvil.dll

GetBool(int, string)

Gets the specified boolean value.

public bool? GetBool(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

bool?

The associated value. null if no value is set.

GetBool(int, int)

Gets the specified boolean value.

public bool? GetBool(int rowIndex, int columnIndex)

Parameters

rowIndex int

The index of the row to query.

columnIndex int

The index of the column to query.

Returns

bool?

The associated value. null if no value is set.