1

I have a TrimBar which configured as below

enter image description here

How can I change the TrimBar width or height ?

abiieez
  • 3,139
  • 14
  • 57
  • 110

1 Answers1

1

The TrimBar adjust to accomodate its contents.

You can add margins around the contents using CSS like:

.MTrimBar ToolBar
{
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 5px;
    margin-bottom: 5px;    
}
greg-449
  • 109,219
  • 232
  • 102
  • 145