FarPoint.Web.Spread 名前空間 > BorderProperty クラス : BorderStyleTop フィールド |
'Declaration
Public Shared ReadOnly BorderStyleTop As BorderProperty
public static readonly BorderProperty BorderStyleTop
FarPoint.Web.Spread.Border b = new FarPoint.Web.Spread.Border(); bool ie; FarPoint.Web.Spread.Cell c; b.BorderColor = Color.Yellow; b.BorderSize = 3; b.BorderStyle = BorderStyle.Inset; c = FpSpread1.ActiveSheetView.Cells[0, 0]; c.Border = b; ie = b.IsEmpty(); TextBox1.Text = ie.ToString();
Dim b As New FarPoint.Web.Spread.Border Dim ie As Boolean Dim c As FarPoint.Web.Spread.Cell b.BorderColor = Color.Yellow b.BorderSize = 3 b.BorderStyle = BorderStyle.Inset c = FpSpread1.ActiveSheetView.Cells(0, 0) c.Border = b ie = b.IsEmpty() TextBox1.Text = ie.ToString()
これらの境界線スタイルの詳細については、Microsoft .NET FrameworkリファレンスのBorderStyle列挙体を参照してください。