Gets the contents of the specified cell as a string regardless of the cell's data type.
.NET Syntax
Visual Basic (Declaration) | |
---|
Function GetEntryText( _
ByVal Row As Integer, _
ByVal Col As Integer _
) As String |
Visual Basic (Usage) | |
---|
Dim instance As IDesignTable
Dim Row As Integer
Dim Col As Integer
Dim value As String
value = instance.GetEntryText(Row, Col)
|
C# | |
---|
string GetEntryText(
int Row,
int Col
) |
C++/CLI | |
---|
String^ GetEntryText(
& int Row,
& int Col
) |
Parameters
- Row
0-based row number of the cell
- Col
0-based column number of the cell
Return Value
Text string in the specified cell
Example
Remarks
See Also