Set to true if your App has help and implements the OnShowHelp() method.

Namespace:  RedCritterV1
Assembly:  RedCritterV1 (in RedCritterV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public bool SupportsHelp { get; set; }
Public Property SupportsHelp As Boolean

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

CopyC#
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
 }

See Also