[]
Creates a TableView object.
public TableView(string name, string tableStyleName, int row, int column, int rowCount, int columnCount)
Public Sub New(name As String, tableStyleName As String, row As Integer, column As Integer, rowCount As Integer, columnCount As Integer)
Type | Name | Description |
---|---|---|
string | name | The table name |
string | tableStyleName | The style name |
int | row | The row index |
int | column | The column index |
int | rowCount | The number of rows |
int | columnCount | The number of columns |
Creates a TableView object.
public TableView(string name, string tableStyleName, int row, int column, int rowCount, int columnCount, bool visibleHeaderRow, bool visibleTotalRow)
Public Sub New(name As String, tableStyleName As String, row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, visibleHeaderRow As Boolean, visibleTotalRow As Boolean)
Type | Name | Description |
---|---|---|
string | name | Name of table. |
string | tableStyleName | Table style name. |
int | row | Row index. |
int | column | Column index. |
int | rowCount | Row count. |
int | columnCount | Column count. |
bool | visibleHeaderRow | Indicates whether the header row is visible. |
bool | visibleTotalRow | Indicates whether the total row is visible. If the value is TRUE, total value and formula are not set. |
Creates a new TableView from the SerializationInfo object.
protected TableView(SerializationInfo info, StreamingContext context)
Protected Sub New(info As SerializationInfo, context As StreamingContext)
Type | Name | Description |
---|---|---|
SerializationInfo | info | A SerializationInfo object |
StreamingContext | context | A StreamingContext context |