PowerTools SPREAD for Windows Forms 8.0J
SetElementStyle メソッド (ElementControl)


ElementStyleオブジェクト
要素のスタイルを設定します。
構文
'Declaration
 
Public Overridable Sub SetElementStyle( _
   ByVal style As ElementStyle _
) 
'使用法
 
Dim instance As ElementControl
Dim style As ElementStyle
 
instance.SetElementStyle(style)
public virtual void SetElementStyle( 
   ElementStyle style
)

パラメータ

style
ElementStyleオブジェクト
解説

このメソッドは、要素の設定を含むElementStyleオブジェクトを指定するときに使用します。ElementStyleオブジェクトは、色、配置、余白などの外観の設定を提供します。

詳細については、ElementStyleクラスを参照してください。

要素のElementStyleオブジェクトを取得するには、GetElementStyleメソッドを使用します。

FarPoint.Win.ElementStyle s1;
s1 = new FarPoint.Win.ElementStyle();
s1.BackColor = Color.Goldenrod
s1.ForeColor = Color.Cyan
s1.Font = New Font("Arial Black", 10)
s1.TextOrientation = FarPoint.Win.TextOrientation.TextHorizontalFlipped
element.SetElementStyle(s1)
Dim s1 As New FarPoint.Win.ElementStyle()
s1.BackColor = Color.Goldenrod
s1.ForeColor = Color.Cyan
s1.Font = New Font("Arial Black", 10)
s1.TextOrientation = FarPoint.Win.TextOrientation.TextHorizontalFlipped
element.SetElementStyle(s1)
参照

ElementControl クラス
ElementControl メンバ
GetElementStyle メソッド
ElementStyle クラス

 

 


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