Visible Property (Read Only) |
Top Previous Next |
Returns true if the field is visible, otherwise it returns false.
VB.NET Syntax
[Boolean =] Field.Visible
C# Syntax
[bool =] Field.Visible;
Remarks
This is a terminal-emulation behavior attribute. Normally, you should consider this property if you are going to implement a terminal emulation program. If the field is a label (protected) and visible is false, it shouldn't be shown. If the field is editable and visible is false, it means that this is a password field.
|