'宣言 Public Overrides ReadOnly Property BorderStyle As Infragistics.Win.UIElementBorderStyle
public override Infragistics.Win.UIElementBorderStyle BorderStyle {get;}
すべてのオペレーティング システムですべてのスタイルが使用可能ではないことに注意してください。プログラムを実行している OS バージョンが特定の境界線スタイルをサポートしていない場合、そのスタイルで書式設定された境界線は実線で表示されます。
Imports Infragistics.Win Public Overrides Property BorderStyle() As UIElementBorderStyle Get ' Returns borderstyle based on FlatMode property of the control. If Me.ControlElement.UltraControl.IsFlatMode Then Return UIElementBorderStyle.Solid Else Return UIElementBorderStyle.Raised End If End Get Set(ByVal Value As UIElementBorderStyle) MyBase.BorderStyle = Value End Set End Property
using Infragistics.Win; public override UIElementBorderStyle BorderStyle { get { // Return borderstyle based on FlatMode property of the control. if (this.ControlElement.UltraControl.IsFlatMode) return UIElementBorderStyle.Solid; else return UIElementBorderStyle.Raised; } }