FarPoint.Web.Spread 名前空間 > Column クラス : ParentStyleName プロパティ |
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle("Style", "DataAreaDefault"); FarPoint.Web.Spread.Column c; ns.BackColor = Color.Orange; FpSpread1.NamedStyles.Add(ns); c = FpSpread1.ActiveSheetView.Columns[0]; c.ParentStyleName = "Style";
Dim ns As New FarPoint.Web.Spread.NamedStyle("Style", "DataAreaDefault") Dim c As FarPoint.Web.Spread.Column ns.BackColor = Color.Orange FpSpread1.NamedStyles.Add(ns) c = FpSpread1.ActiveSheetView.Columns(0) c.ParentStyleName = "Style"