| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Table As Variable() | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As TableEventArgs Dim value() As Variable value = instance.Table | |
| C# | |
|---|---|
public readonly Variable[] Table | |
| Managed Extensions for C++ | |
|---|---|
public: readonly Variable*[]* Table | |
| C++/CLI | |
|---|---|
public: readonly array<Variable^>^ Table | |
Property Value
A two dimensional array of Variable objects representing the returned table.The returned Variable array is a two dimensional array. Use the System.Array.GetLength(System.Int32) method with a value of 0 to determine the number of rows in the returned table, or a value of 1 to determine the number of columns in the returned table.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code