PowerTools SPREAD for Windows Forms 8.0J
NoteIndicatorColor プロパティ (NamedStyle)


セルノートインジケータの色を取得または設定します。
構文
'Declaration
 
Public Overrides Property NoteIndicatorColor As Color
'使用法
 
Dim instance As NamedStyle
Dim value As Color
 
instance.NoteIndicatorColor = value
 
value = instance.NoteIndicatorColor
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 メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.