string s;
FarPoint.Win.Spread.NamedStyle parent = new FarPoint.Win.Spread.NamedStyle("Parent");
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.BackColor = Color.Yellow;
FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle("MyStyle", "Parent", si);
fpSpread1.ActiveSheet.DefaultStyle = ns;
fpSpread1.NamedStyles.Add(ns);
s = fpSpread1.ActiveSheet.DefaultStyleName;
label1.Text = "The name of the default style is " + s;
Dim s As String
Dim parent As New FarPoint.Win.Spread.NamedStyle("Parent")
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.BackColor = Color.Yellow
Dim ns As New FarPoint.Win.Spread.NamedStyle("MyStyle", "Parent", si)
FpSpread1.ActiveSheet.DefaultStyle = ns
FpSpread1.NamedStyles.Add(ns)
s = FpSpread1.ActiveSheet.DefaultStyleName
Label1.Text = "The name of the default style is " & s