LabelPaddingRight Property
The LabelPaddingRight property gets the right padding for the item's text. This property is effective when you have the ItemAlign property set to right.
topicbar.ItemStyle.ItemAlign = HorizontalAlign.Right
topicbar.ItemStyle.LabelPaddingRight = Unit.Pixel(25)
• C#
topicbar.ItemStyle.ItemAlign = HorizontalAlign.Right;
topicbar.ItemStyle.LabelPaddingRight = Unit.Pixel(25);
|