Is there a simple way to customize a button in RibbonX so that it defaults to a small button. The following is my code. I would like the the first button EmeraldHeader to be large and the remaining three buttons to default small.
XML:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab id="EBTools" label="EB Tools" insertAfterMso="TabHome">
<group id="CellColorFormat" label="Cell Color Format">
<button id="EmeraldHeader" label="Emerald Header" size="large" onAction="EmeraldTitleBold" image="EmeraldHeader" />
<button id="MainHeader" label="Main Header" size="large" onAction="MainTitleBold" image="MainHeader" />
<button id="ReHeader" label="Re Header" size="large" onAction="ReTitleBold" image="ReHeader" />
<button id="DataEntry" label="Data Entry" size="large" onAction="DataEntry" image="DataEntry" />
</group>
</tab>
</tabs>
</ribbon>
</customUI>