'Declaration Public Enum LineStyle Inherits System.Enum
'使用法 Dim instance As LineStyle
public enum LineStyle : System.Enum
メンバ | 説明 |
---|---|
DashDot | ダッシュ、点の繰り返しパターンで構成された線を指定します。 |
DashDotDot | ダッシュ、点、点の繰り返しパターンで構成された線を指定します。 |
Dashed | ダッシュで構成された線を指定します。 |
Dotted | 点で構成された線を指定します。 |
Double | 1ピクセル幅の2本の実線の間に1ピクセル幅の空白線が挟まれた、3ピクセル幅の線を指定します。 |
Hair | Dashedよりも間隔が50パーセント狭い破線スタイルの線を指定します。 |
Inset | くぼんだ線を指定します。 |
None | 線がないことを指定します。 |
Raised | 浮き上がった線を指定します。 |
Single | 単線 |
Thick | 3ピクセル幅の実線を指定します。 |
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType textcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType(); textcell.FocusPosition = GrapeCity.Win.Spread.InputMan.CellType.EditorBaseFocusCursorPosition.MouseLocation; textcell.GridLine = new GrapeCity.Win.Spread.InputMan.CellType.Line(GrapeCity.Win.Spread.InputMan.CellType.LineStyle.Dashed, Color.DarkGreen); textcell.LineSpace = 2; textcell.ScrollBarMode = GrapeCity.Win.Spread.InputMan.CellType.ScrollBarMode.Automatic; textcell.ScrollBars = ScrollBars.Both; textcell.Multiline = true; fpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;
Dim textcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType() textcell.FocusPosition = GrapeCity.Win.Spread.InputMan.CellType.EditorBaseFocusCursorPosition.MouseLocation textcell.GridLine = New GrapeCity.Win.Spread.InputMan.CellType.Line(GrapeCity.Win.Spread.InputMan.CellType.LineStyle.Dashed, Color.DarkGreen) textcell.LineSpace = 2 textcell.ScrollBarMode = GrapeCity.Win.Spread.InputMan.CellType.ScrollBarMode.Automatic textcell.ScrollBars = ScrollBars.Both textcell.Multiline = True FpSpread1.Sheets(0).Cells(0, 0).CellType = textcell
System.Object
System.ValueType
System.Enum
GrapeCity.Win.Spread.InputMan.CellType.LineStyle