File: System\ComponentModel\Design\HelpKeywordType.cs
Web Access
Project: src\src\libraries\System.ComponentModel.TypeConverter\src\System.ComponentModel.TypeConverter.csproj (System.ComponentModel.TypeConverter)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.ComponentModel.Design
{
    /// <summary>
    /// Specifies identifiers that can be used to indicate the type of a help keyword.
    /// </summary>
    public enum HelpKeywordType
    {
        /// <summary>
        /// Indicates the keyword is a word F1 was pressed to request help regarding.
        /// </summary>
        F1Keyword,
        /// <summary>
        /// Indicates the keyword is a general keyword.
        /// </summary>
        GeneralKeyword,
        /// <summary>
        /// Indicates the keyword is a filter keyword.
        /// </summary>
        FilterKeyword
    }
}