Option Strict On
Option Explicit On

Namespace Nexamas.UI.PropertyGrid

    ''' <summary>
    ''' Internal value vocabulary understood by the MASPropertyGrid foundation and renderer.
    ''' </summary>
    Friend Enum MASPropertyGridValueKind
        Unknown = 0
        Text = 1
        BooleanValue = 2
        Number = 3
        EnumValue = 4
        DateTimeText = 5
        ObjectText = 6
    End Enum

End Namespace
