Enables or disables the control.
Type | Description | |||
Boolean | A boolean expression that indicates whether the control is enabled or disabled. |
Use the Enabled property to disable the control. Use the ForeColor property to specify the control's foreground color. Use the BackColor property to specify the control's background color. Use the Font property to specify the control's font. Use the BackColorHeader property to specify the background color for the control's header bar. Use the ForeColorHeader properties to specify the foreground color for the control's header bar.
The following VB sample disables the control:
ExFileView1.Enabled = False
The following C++ sample disables the control:
m_fileview.SetEnabled( FALSE );
The following VB.NET sample disables the control:
AxExFileView1.Enabled = False
The following C# sample disables the control:
axExFileView1.Enabled = false;
The following VFP sample disables the control:
With thisform.ExFileView1 .Object.Enabled = False EndWith