バージョン

BorderStyle プロパティ (UltraCalendarCombo)

コントロールの境界線のスタイルを決定する値を返すまたは設定します。
シンタックス
'宣言
 
Public Property BorderStyle As Infragistics.Win.UIElementBorderStyle
public Infragistics.Win.UIElementBorderStyle BorderStyle {get; set;}
解説

すべてのオペレーティング システムですべてのスタイルが使用可能ではないことに注意してください。プログラムを実行している OS バージョンが特定の境界線スタイルをサポートしていない場合、そのスタイルで書式設定された境界線は実線で表示されます。

使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinSchedule.CalendarCombo

    Private Sub HideBorders()

        '	If the resolved border style is not 'None', set it to 'None'
        If (Me.ultraCalendarCombo1.BorderStyleResolved <> UIElementBorderStyle.None) Then
            Me.ultraCalendarCombo1.BorderStyle = UIElementBorderStyle.None
        End If


        '	If the resolved dropdown border style is not 'None', set it to 'None'
        If (Me.ultraCalendarCombo1.BorderStyleDropDownResolved <> UIElementBorderStyle.None) Then
            Me.ultraCalendarCombo1.BorderStyleDropDown = UIElementBorderStyle.None
        End If

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using Infragistics.Win.UltraWinSchedule.CalendarCombo;

		private void HideBorders()
		{

			//	If the resolved border style is not 'None', set it to 'None'
			if ( this.ultraCalendarCombo1.BorderStyleResolved != UIElementBorderStyle.None )
				this.ultraCalendarCombo1.BorderStyle = UIElementBorderStyle.None;


			//	If the resolved dropdown border style is not 'None', set it to 'None'
			if ( this.ultraCalendarCombo1.BorderStyleDropDownResolved != UIElementBorderStyle.None )
				this.ultraCalendarCombo1.BorderStyleDropDown = UIElementBorderStyle.None;

		}
参照