-
Notifications
You must be signed in to change notification settings - Fork 0
/
customUI.xml
31 lines (31 loc) · 1.44 KB
/
customUI.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab id="CustomTab" label="Fluid Power" insertBeforeMso="TabHome">
<group id="SimpleControls" label="Design Record Control">
<button id="Button1" imageMso="CitationMark" size="large"
label="New"
onAction="ThisWorkbook.New_Record" />
<button id="Button2" imageMso="ImportMoreMenu" size="large"
label="Send Record to Eval"
onAction="ThisWorkbook.Load_Record" />
<button id="Button3" imageMso="FileSave" size="large"
label="Send Record To Log"
onAction="ThisWorkbook.Save_Record" />
<button id="Button4" imageMso="DatabasePermissionsMenu" size="large"
label="Protect Record"
onAction="ThisWorkbook.Protect_Record" />
<button id="Button5" imageMso="TableRowsInsertAboveWord" size="large"
label="Previous"
onAction="ThisWorkbook.Prev_Record" />
<button id="Button6" imageMso="TableRowsInsertBelowWord" size="large"
label="Next"
onAction="ThisWorkbook.Next_Record" />
<button id="Button7" imageMso="DesignMode" size="large"
label="Draw Prints"
onAction="ThisWorkbook.Make_Drawing" />
</group>
</tab>
</tabs>
</ribbon>
</customUI>