BaseForm.CanShowHelp Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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;
}
}