|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Windows.Forms;
/// <summary>
/// Specifies whether any characters in the
/// current selection have the style or attribute.
/// </summary>
public enum RichTextBoxSelectionAttribute
{
/// <summary>
/// Some but not all characters.
/// </summary>
Mixed = -1,
/// <summary>
/// No characters.
/// </summary>
None = 0,
/// <summary>
/// All characters.
/// </summary>
All = 1,
}
|