Interface ITableEditorDataProvider
Assembly: NXOpen.dll
Syntax
public interface ITableEditorDataProvider
Properties
ColumnCount
Declaration
int ColumnCount { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
RowCount
Declaration
int RowCount { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Methods
Destroy()
Declaration
GetBoolean(Int32, Int32)
Declaration
bool GetBoolean(int row, int column)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
System.Int32 |
column |
|
Returns
Type |
Description |
System.Boolean |
|
GetDouble(Int32, Int32, out Boolean)
Declaration
double GetDouble(int row, int column, out bool isUnassigned)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
System.Int32 |
column |
|
System.Boolean |
isUnassigned |
|
Returns
Type |
Description |
System.Double |
|
GetInteger(Int32, Int32, out Boolean)
Declaration
int GetInteger(int row, int column, out bool isUnassigned)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
System.Int32 |
column |
|
System.Boolean |
isUnassigned |
|
Returns
Type |
Description |
System.Int32 |
|
GetString(Int32, Int32)
Declaration
string GetString(int row, int column)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
System.Int32 |
column |
|
Returns
Type |
Description |
System.String |
|
SetBoolean(Int32, Int32, Boolean)
Declaration
bool SetBoolean(int rows, int column, bool booleanData)
Parameters
Type |
Name |
Description |
System.Int32 |
rows |
|
System.Int32 |
column |
|
System.Boolean |
booleanData |
|
Returns
Type |
Description |
System.Boolean |
|
SetBoolean(Int32[], Int32, Boolean)
Declaration
bool SetBoolean(int[] rows, int column, bool booleanData)
Parameters
Type |
Name |
Description |
System.Int32[] |
rows |
|
System.Int32 |
column |
|
System.Boolean |
booleanData |
|
Returns
Type |
Description |
System.Boolean |
|
SetDouble(Int32, Int32, Double)
Declaration
bool SetDouble(int rows, int column, double doubleData)
Parameters
Type |
Name |
Description |
System.Int32 |
rows |
|
System.Int32 |
column |
|
System.Double |
doubleData |
|
Returns
Type |
Description |
System.Boolean |
|
SetDouble(Int32[], Int32, Double)
Declaration
bool SetDouble(int[] rows, int column, double doubleData)
Parameters
Type |
Name |
Description |
System.Int32[] |
rows |
|
System.Int32 |
column |
|
System.Double |
doubleData |
|
Returns
Type |
Description |
System.Boolean |
|
SetInteger(Int32, Int32, Int32)
Declaration
bool SetInteger(int rows, int column, int integerData)
Parameters
Type |
Name |
Description |
System.Int32 |
rows |
|
System.Int32 |
column |
|
System.Int32 |
integerData |
|
Returns
Type |
Description |
System.Boolean |
|
SetInteger(Int32[], Int32, Int32)
Declaration
bool SetInteger(int[] rows, int column, int integerData)
Parameters
Type |
Name |
Description |
System.Int32[] |
rows |
|
System.Int32 |
column |
|
System.Int32 |
integerData |
|
Returns
Type |
Description |
System.Boolean |
|
SetString(Int32, Int32, String)
Declaration
bool SetString(int rows, int column, string stringData)
Parameters
Type |
Name |
Description |
System.Int32 |
rows |
|
System.Int32 |
column |
|
System.String |
stringData |
|
Returns
Type |
Description |
System.Boolean |
|
SetString(Int32[], Int32, String)
Declaration
bool SetString(int[] rows, int column, string stringData)
Parameters
Type |
Name |
Description |
System.Int32[] |
rows |
|
System.Int32 |
column |
|
System.String |
stringData |
|
Returns
Type |
Description |
System.Boolean |
|
UnsetValue(Int32, Int32)
Declaration
bool UnsetValue(int row, int column)
Parameters
Type |
Name |
Description |
System.Int32 |
row |
|
System.Int32 |
column |
|
Returns
Type |
Description |
System.Boolean |
|
UnsetValue(Int32[], Int32)
Declaration
bool UnsetValue(int[] rows, int column)
Parameters
Type |
Name |
Description |
System.Int32[] |
rows |
|
System.Int32 |
column |
|
Returns
Type |
Description |
System.Boolean |
|