MESCIUS SPREAD for Windows Forms 15.0J
NoteIndicatorColor プロパティ (NamedStyle)
使用例 

セルノートインジケータの色を取得または設定します。
構文
'宣言
 
Public Overrides Property NoteIndicatorColor As Color
public override Color NoteIndicatorColor {get; set;}

プロパティ値

セル ノートの色を含む Color オブジェクト
使用例
次のサンプルコードは、新しい名前付きスタイルのプロパティを設定します。
FarPoint.Win.Spread.NamedStyle newstyle = new FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreadefault"); 
newstyle.BackColor = Color.LightBlue; 
newstyle.CanFocus = false; 
newstyle.TabStop = false;
newstyle.NoteIndicatorColor = Color.DarkMagenta;

fpSpread1.NamedStyles.Add(newstyle); 
fpSpread1.ActiveSheet.Cells[0, 0].StyleName = "StyleData"; 
fpSpread1.ActiveSheet.SetText(0, 0, "NamedStyle"); 
Dim newstyle As New FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreadefault")
newstyle.BackColor = Color.LightBlue
newstyle.CanFocus = False
newstyle.TabStop = False
newstyle.NoteIndicatorColor = Color.DarkMagenta

FpSpread1.NamedStyles.Add(newstyle)
FpSpread1.ActiveSheet.Cells(0, 0).StyleName = "StyleData"
FpSpread1.ActiveSheet.SetText(0, 0, "NamedStyle")
参照

NamedStyle クラス
NamedStyle メンバ

 

 


© MESCIUS inc. All rights reserved.