Name Property (Read/Write) |
Top Previous Next |
Returns a string with the field name. This name is made by the telnet controls and it can be modified before first use.
VB.NET Syntax
Field.Name [= String]
C# Syntax
Field.Name [= string];
Remarks
The string returned is the result of a concatenation between "R", the value of Row property, "C" and the value of Col property. For example, the name of a field located at row 4 column 30 will be R4C30.
|