This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/ref/xcad/docs/_src/Extension/CommandsManager/CommandTabBox.cs
2022-10-15 19:16:08 +02:00

17 lines
494 B
C#

using Xarial.XCad.UI.Commands.Attributes;
using Xarial.XCad.UI.Commands.Enums;
public enum CommandsC_e
{
[CommandItemInfo(true, true, WorkspaceTypes_e.Assembly,
true, RibbonTabTextDisplay_e.NoText)]
CommandC1,
[CommandItemInfo(true, true, WorkspaceTypes_e.AllDocuments,
true, RibbonTabTextDisplay_e.TextBelow)]
CommandC2,
[CommandItemInfo(true, true, WorkspaceTypes_e.AllDocuments,
true, RibbonTabTextDisplay_e.TextHorizontal)]
CommandC3,
}