Browse ControlEnable Controls Method
This should be overridden in derived classes to enable or disable the controls based on whether or
not there are items in the collection.
Definition
Namespace: EWSoftware.PDI.Windows.Forms
Assembly: EWSoftware.PDI.Windows.Forms (in EWSoftware.PDI.Windows.Forms.dll) Version: 2025.1.9.0
Assembly: EWSoftware.PDI.Windows.Forms (in EWSoftware.PDI.Windows.Forms.dll) Version: 2025.1.9.0
C#
public virtual void EnableControls(
bool enable
)VB
Public Overridable Sub EnableControls (
enable As Boolean
)C++
public:
virtual void EnableControls(
bool enable
)F#
abstract EnableControls :
enable : bool -> unit
override EnableControls :
enable : bool -> unit Parameters
- enable Boolean
- True to enable the controls, false to disable the controls
Remarks
The default implementation does nothing. For simplicity, it is easiest to place the
controls in a panel and then enable or disable the panel control.