Hi,
how can I set style property on TBarButton object. My server code is:
for (int i = 0; i < tb.Items.Count; i++) {
}
You can set the TBarButton.DefaultStyle.CustomRules to "display:none;" or instead of looping through all the items, you can probably just set the UltraWebToolbar.ButtonStyle.CustomRules to "display:none;". The CustomRules property off our style objects can be used to apply css without having to assign set the CssClass property to a class you defined.