FarPoint.Web.Spread 名前空間 > StyleInfo クラス > Merge メソッド : Merge(Object,Boolean) メソッド |
Merge(Object, Boolean)メソッドは、現在のオブジェクトの既存の設定を上書きするオプションを提供します。fForceパラメータをTrueに設定すると、マージオブジェクトの設定は現在のオブジェクトの設定を上書きします。現在のオブジェクトの設定を上書きしたくない場合はfForceパラメータをFalseに設定します。
現在のオブジェクトの既存の設定を上書きする必要がない場合、Merge(Object)メソッドを使用できます。
FarPoint.Web.Spread.StyleInfo info = new FarPoint.Web.Spread.StyleInfo(); FarPoint.Web.Spread.StyleInfo minfo = new FarPoint.Web.Spread.StyleInfo(); minfo.BackColor = Color.Yellow; info.ForeColor = Color.Red; info.Font.Bold = true; info.Merge(minfo, true); FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, info); bool bol; bol = info.IsPropertySet(FarPoint.Web.Spread.SheetStyleProperty.BackColor); ListBox1.Items.Add(Convert.ToString(bol));
Dim info As New FarPoint.Web.Spread.StyleInfo() Dim minfo As New FarPoint.Web.Spread.StyleInfo() Dim prop As FarPoint.Web.Spread.SheetStyleProperty minfo.BackColor = Color.Yellow info.ForeColor = Color.Red info.Font.Bold = True info.Merge(minfo, True) FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, info) Dim bol As Boolean bol = info.IsPropertySet(prop.BackColor) ListBox1.Items.Add(bol)