MESCIUS SPREAD for ASP.NET 10.0J
BorderStyle フィールド

オブジェクトのすべての辺の罫線に適用されるスタイルを指定するBorderStyleプロパティ(インデックスは10)を表します。
構文
'Declaration
 
Public Shared ReadOnly BorderStyle As BorderProperty
public static readonly BorderProperty BorderStyle
この例では、BorderPropertyフィールドの1つが定義されているかどうかを決定し、その結果をテキストボックスに返します。
FarPoint.Web.Spread.Border border = New FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
bool bl;
acell = FpSpread1.Cells[0, 0];
border.BorderColor = Color.Red;
border.BorderSize = 2;
border.BorderStyle = BorderStyle.Groove;

bl = border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderStyle);
acell.Border = border;
TextBox1.Text = Convert.ToString(bl);
Dim border As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
Dim bl As Boolean
acell = FpSpread1.Cells(0, 0)
border.BorderColor = Color.Red
border.BorderSize = 2
border.BorderStyle = BorderStyle.Groove

bl = border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderStyle)
acell.Border = border
TextBox1.Text = bl
解説

これらの境界線スタイルの詳細については、Microsoft .NET FrameworkリファレンスのBorderStyle列挙体を参照してください。

参照

BorderProperty クラス
BorderProperty メンバ
BorderStyleBottom フィールド
BorderStyleLeft フィールド
BorderStyleRight フィールド
BorderStyleTop フィールド

 

 


© MESCIUS inc. All rights reserved.