バージョン

SelectionOverlayColor プロパティ

GanttView のグリッド部分の選択された行 (タスク) をオーバーレイする場合に使用する色を取得または設定します。
シンタックス
'宣言
 
Public Property SelectionOverlayColor As Color
public Color SelectionOverlayColor {get; set;}
解説

Alpha チャンネルが指定の色に存在する場合、そのアルファ チャンネルを使用して行をオーバーレイします。Alpha チャンネルが指定されていない場合、行を塗りつぶしてオーバーレイするのではなく、デフォルトのアルファ レベルが使用されます。

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


Private Sub setSelectionOverlay() 
    
    ' Sets the color for the borders drawn around the selected row(task) in the grid portion of the control 
    Me.ultraGanttView1.GridSettings.SelectionOverlayBorderColor = Color.Red 
    ' Sets the thickness of the border drawn around the selection overlay  in the grid portion of the control 
    Me.ultraGanttView1.GridSettings.SelectionOverlayBorderThickness = 4 
    ' Sets the color to overlay the selected row(Task) in the grid portion of the control 
    Me.ultraGanttView1.GridSettings.SelectionOverlayColor = Color.Green 

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


private void setSelectionOverlay()
{

	  // Sets the color for the borders drawn around the selected row(task) in the grid portion of the control
     this.ultraGanttView1.GridSettings.SelectionOverlayBorderColor = Color.Red;
    // Sets the thickness of the border drawn around the selection overlay  in the grid portion of the control 
     this.ultraGanttView1.GridSettings.SelectionOverlayBorderThickness = 4;
    // Sets the color to overlay the selected row(Task) in the grid portion of the control
     this.ultraGanttView1.GridSettings.SelectionOverlayColor = Color.Green;
}
参照