PowerTools SPREAD for Windows Forms 8.0J
CompoundBorder コンストラクタ(IBorder,IBorder)


外側境界線
内側境界線
指定した内側境界線と外側境界線を使用し、複合境界線を作成します。
構文
'Declaration
 
Public Function New( _
   ByVal outside As IBorder, _
   ByVal inside As IBorder _
)
'使用法
 
Dim outside As IBorder
Dim inside As IBorder
 
Dim instance As New CompoundBorder(outside, inside)
public CompoundBorder( 
   IBorder outside,
   IBorder inside
)

パラメータ

outside
外側境界線
inside
内側境界線
次のサンプルコードは、複合境界線を作成します。
FarPoint.Win.LineBorder lb = new FarPoint.Win.LineBorder(Color.DarkBlue, 2, true, false, true, false); 
FarPoint.Win.LineBorder tb = new FarPoint.Win.LineBorder(Color.LightBlue, 1, false, true, false, true); 
FarPoint.Win.CompoundBorder cb = new FarPoint.Win.CompoundBorder(lb, tb);
Dim lb As New FarPoint.Win.LineBorder(Color.DarkBlue, 2, True, False, True, False)
Dim tb As New FarPoint.Win.LineBorder(Color.LightBlue, 1, False, True, False, True)
Dim cb As New FarPoint.Win.CompoundBorder(lb, tb)
参照

CompoundBorder クラス
CompoundBorder メンバ
オーバーロード一覧
Outside プロパティ
Inside プロパティ

 

 


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