Updated documentation

pull/30/head
David Hall 2018-12-17 14:35:36 -07:00
parent 7850a77a18
commit df6d524354
1 changed files with 4 additions and 2 deletions

View File

@ -8,8 +8,10 @@ using Vanara.Extensions;
namespace Vanara.Windows.Forms.Design
{
// UITypeEditor for flag enums
public class FlagEnumUIEditor<TE> : UITypeEditor where TE : struct, IConvertible
/// <summary>A <see cref="UITypeEditor"/> for editing flag enums.</summary>
/// <typeparam name="TE">The type of the enum.</typeparam>
/// <seealso cref="System.Drawing.Design.UITypeEditor"/>
public class FlagEnumUIEditor<TE> : UITypeEditor where TE : struct, System.Enum
{
private readonly FlagCheckedListBox listBox;