FarPoint.Web.Spread.Model 名前空間 > BaseSheetStyleModel クラス : GetDirectAltRowInfo メソッド |
Spread は、セルを描画する直前に交互行スタイルとセルの複合スタイルをマージします。
この実装は何もせずに Null を返します。
FarPoint.Web.Spread.Model.BaseSheetStyleModel bs;
bs = (FarPoint.Web.Spread.Model.BaseSheetStyleModel)FpSpread1.ActiveSheetView.StyleModel;
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo();
si.BackColor = Color.Yellow;
bs.SetDirectAltRowInfo(0, si);
si = bs.GetDirectAltRowInfo(0, si);
Response.Write(si.BackColor.ToString());
Dim bs As FarPoint.Web.Spread.Model.BaseSheetStyleModel bs = FpSpread1.ActiveSheetView.StyleModel Dim si As New FarPoint.Web.Spread.StyleInfo si.BackColor = Color.Yellow bs.SetDirectAltRowInfo(0, si) si = bs.GetDirectAltRowInfo(0, si) Response.Write(si.BackColor.ToString())