Set to true if your App has help and implements the OnShowHelp() method.
Namespace:
RedCritterV1Assembly: RedCritterV1 (in RedCritterV1.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Remarks
If this is set to true, the user will have a "Help" menu option available to them in the Player anytime your App has focus. This property must be set in your App's constructor (see example below).
Examples
public partial class MyApp: RedCritterV1.App, RedCritterOutlookV1.IOutlook { public MyApp() { InitializeComponent(); SupportsHelp = true; //If your App implements OnHelp() then set it after initialization. } //...Additional Code }