GrapeCity SPREAD for Windows Forms 11.0J
NoteIndicatorPosition 列挙体


セルノートインジケーターの位置を指定します。
構文
'Declaration
 
Public Enum NoteIndicatorPosition 
   Inherits System.Enum
'使用法
 
Dim instance As NoteIndicatorPosition
public enum NoteIndicatorPosition : System.Enum 
メンバ
メンバ説明
BottomLeftセルの左下にノートインジケーターを表示します。
BottomRightセルの右下にノートインジケーターを表示します。
TopLeftセルの左上にノートインジケーターを表示します。
TopRightセルの右上にノートインジケーターを表示します。
次のサンプルコードは、NoteIndicatorPosition列挙体を使用します。
FarPoint.Win.Spread.StyleInfo info = new FarPoint.Win.Spread.StyleInfo();
bool b;
info.BackColor = Color.LightBlue;
info.NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight;   
fpSpread1.ActiveSheet.DefaultStyle = info;
b = info.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorPosition);
listBox1.Items.Add(b.ToString());
Dim info As New FarPoint.Win.Spread.StyleInfo()
Dim b As Boolean
info.BackColor = Color.LightBlue
info.NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight
FpSpread1.ActiveSheet.DefaultStyle = info
b = info.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorPosition)
ListBox1.Items.Add(b.ToString())
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.NoteIndicatorPosition

参照

FarPoint.Win.Spread 名前空間

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.