FarPoint.Web.Spread.DefaultStyleCollection dsc = new FarPoint.Web.Spread.DefaultStyleCollection();
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle();
int i;
int i;
foreach(FarPoint.Web.Spread.NamedStyle ns in dsc)
{
i = dsc.IndexOf(ns);
dsc[i].BackColor = Color.Yellow;
}
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection
Dim ns As New FarPoint.Web.Spread.NamedStyle
Dim i As Integer
For Each ns In dsc.Styles
i = dsc.IndexOf(ns)
dsc.Item(i).BackColor = Color.Yellow
Next