BaseForm.CanShowHelp Property

Definition

Gets a value indicating whether the context-sensitive Help button is shown.

protected:
 virtual property bool CanShowHelp { bool get(); };
protected virtual bool CanShowHelp { get; }
member this.CanShowHelp : bool
Protected Overridable ReadOnly Property CanShowHelp As Boolean

Property Value

true if the context-sensitive Help button is shown; otherwise, false.

Examples

The following example implements the CanShowHelp method.

protected override bool CanShowHelp {
    get {
        return false;
    }
}

Applies to