PowerTools SPREAD for Windows Forms 8.0J
WrapMode 列挙体


行の折り返し方法を指定します。
構文
'Declaration
 
Public Enum WrapMode 
   Inherits System.Enum
'使用法
 
Dim instance As WrapMode
public enum WrapMode : System.Enum 
メンバ
メンバ説明
CharWrap文字単位で行を折り返します。
NoWrap折り返しません。
WordWrap単語単位で行を折り返します。
次のサンプルコードは、WrapMode 列挙体を使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType textcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
textcell.WrapMode = GrapeCity.Win.Spread.InputMan.CellType.WrapMode.WordWrap;
textcell.Multiline = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;
Dim textcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
textcell.WrapMode = GrapeCity.Win.Spread.InputMan.CellType.WrapMode.WordWrap
textcell.Multiline = True
FpSpread1.Sheets(0).Cells(0, 0).CellType = textcell
継承階層

System.Object
   System.ValueType
      System.Enum
         GrapeCity.Win.Spread.InputMan.CellType.WrapMode

参照

GrapeCity.Win.Spread.InputMan.CellType 名前空間

 

 


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