Share via


FormGroupControl.enabled Method

Definition

Overloads

enabled()

Determines whether the object is enabled or disabled.

enabled(Boolean)

enabled()

Determines whether the object is enabled or disabled.

public:
 override bool enabled();
public override bool enabled ();
override this.enabled : unit -> bool
Public Overrides Function enabled () As Boolean

Returns

true if the object is enabled; otherwise, false.

Remarks

The enabled property lets you enable or disable controls at run time. For example, you can disable objects that do not apply to the current state of the application. You can also disable a control that is used only for display purposes, such as an error message that provides read-only information.

Applies to

enabled(Boolean)

public:
 override bool enabled(bool _value);
public override bool enabled (bool _value);
override this.enabled : bool -> bool
Public Overrides Function enabled (_value As Boolean) As Boolean

Parameters

_value
Boolean

A Boolean value that indicates whether a form group control is enabled; optional.

Returns

Applies to