Table of Contents

Method GetFloat

Namespace
Anvil.API
Assembly
NWN.Anvil.dll

GetFloat(int, string)

Gets the specified float value.

public float? GetFloat(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

float?

The associated value. null if no value is set.

GetFloat(int, int)

Gets the specified float value.

public float? GetFloat(int rowIndex, int columnIndex)

Parameters

rowIndex int

The index of the row to query.

columnIndex int

The index of the column to query.

Returns

float?

The associated value. null if no value is set.