ForeColor Property
The ForeColor property gets or sets the foreground color of the Web server control.
GroupStyle.ForeColor property
The following code shows how to apply the ForeColor property to the GroupStyle.
topicbar.GroupStyle.ForeColor = Color.DeepSkyBlue
• C#
topicbar.GroupStyle.ForeColor = Color.DeepSkyBlue;
ItemStyle.ForeColor property
This example shows how to apply the ForeColor property to the ItemStyle.
topicbar.ItemStyle.ForeColor = Color.DeepSkyBlue
• C#
topicbar.ItemStyle.ForeColor = Color.DeepSkyBlue;
|