Option Strict On
Option Explicit On

Namespace Nexamas.UI.Components

    Friend Enum MASToolbarToolKind
        None = 0

        Back = 10
        Forward = 11
        Up = 12
        Home = 13
        Refresh = 14
        StopAction = 15

        Search = 30
        Filter = 31
        Sort = 32
        More = 33
        Settings = 34

        NewFolder = 50
        OpenFolder = 51
        Save = 52
        SaveAs = 53
        Upload = 54
        Export = 55

        Edit = 70
        Rename = 71
        Delete = 72
        Copy = 73
        Cut = 74
        Paste = 75
        Check = 76
        Clear = 77

        GridView = 90
        ListView = 91
        DetailsView = 92
    End Enum

End Namespace