'Declaration Public Enum WrapMode Inherits System.Enum
'使用法 Dim instance As WrapMode
public enum WrapMode : System.Enum
メンバ | 説明 |
---|---|
CharWrap | 文字単位で行を折り返します。 |
NoWrap | 折り返しません。 |
WordWrap | 単語単位で行を折り返します。 |
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