BorderColor Property
The BorderColor property gets or sets the border color of the Web server control.
This example uses the default border style: solid with a width size of 5 pixels.
GroupStyle.BorderColor property
The following code shows how to apply the BorderColor property to the GroupStyle object of the C1WebTopicBar control.
topicbar.GroupStyle.BorderColor = Color.AniqueWhite
• C#
topicbar.GroupStyle.BorderColor = Color.AniqueWhite;
ItemStyle.BorderColor property
The following code shows how to apply the BorderColor property to the ItemStyle object of the C1WebTopicBar control.
topicbar.ItemStyle.BorderColor = Color.AniqueWhite
• C#
topicbar.ItemStyle.BorderColor = Color.AniqueWhite;
|