バージョン

BorderStyleSummaryFooter プロパティ

集計フッターの境界線のスタイルを決定する値を返すか、設定します。
シンタックス
'宣言
 
Public Property BorderStyleSummaryFooter As Infragistics.Win.UIElementBorderStyle
public Infragistics.Win.UIElementBorderStyle BorderStyleSummaryFooter {get; set;}
解説

このプロパティは、指定したオーバーライドによって制御されるバンドまたはグリッドで集計フッターの境界線の外観を設定するために使用されます。複数の線スタイルから選択できます。すべてのオペレーティング システムですべてのスタイルが使用可能ではないことに注意してください。プログラムが実行中の OS のバージョンが特定の線スタイルをサポートしない場合、そのスタイルで書式設定した境界線は、実線を使用して描画されます。

使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

  Private Sub Button14_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button14.Click

      ' Set the appearance of the summary footer area.
      Me.ultraGrid1.DisplayLayout.Override.SummaryFooterAppearance.BackColor = Color.White
      Me.ultraGrid1.DisplayLayout.Override.SummaryFooterAppearance.ForeColor = Color.Black

      ' Set the border style of the summary footer.
      Me.ultraGrid1.DisplayLayout.Override.BorderStyleSummaryFooter = UIElementBorderStyle.Solid

      ' Set the appearance for the caption on top of the summary area.
      Me.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = DefaultableBoolean.True
      Me.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionAppearance.BackColor = Color.DarkBlue
      Me.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionAppearance.BackColor = Color.LightYellow

      ' Set the text that shows up in the caption of the summary footer.
      Me.ultraGrid1.DisplayLayout.Bands(0).SummaryFooterCaption = "Summaries for customers"

      ' Set the border style for the summary footer caption.
      Me.ultraGrid1.DisplayLayout.Override.BorderStyleSummaryFooterCaption = UIElementBorderStyle.Solid

      ' Set the appearance of individual summaries inside the summary footer
      Me.ultraGrid1.DisplayLayout.Override.SummaryValueAppearance.TextHAlign = HAlign.Right
      Me.ultraGrid1.DisplayLayout.Override.SummaryValueAppearance.BackColor = Color.White
      Me.ultraGrid1.DisplayLayout.Override.SummaryValueAppearance.ForeColor = Color.Black

      ' Set the border style for summaries in the footer.
      Me.ultraGrid1.DisplayLayout.Override.BorderStyleSummaryValue = UIElementBorderStyle.Solid

  End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

private void button14_Click(object sender, System.EventArgs e)
{

	// Set the appearance of the summary footer area.
	this.ultraGrid1.DisplayLayout.Override.SummaryFooterAppearance.BackColor = Color.White;
	this.ultraGrid1.DisplayLayout.Override.SummaryFooterAppearance.ForeColor = Color.Black;

	// Set the border style of the summary footer.
	this.ultraGrid1.DisplayLayout.Override.BorderStyleSummaryFooter = UIElementBorderStyle.Solid;

	// Set the appearance for the caption on top of the summary area.
	this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = DefaultableBoolean.True;
	this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionAppearance.BackColor = Color.DarkBlue;
	this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionAppearance.BackColor = Color.LightYellow;

	// Set the text that shows up in the caption of the summary footer.
	this.ultraGrid1.DisplayLayout.Bands[0].SummaryFooterCaption = "Summaries for customers";

	// Set the border style for the summary footer caption.
	this.ultraGrid1.DisplayLayout.Override.BorderStyleSummaryFooterCaption = UIElementBorderStyle.Solid;

	// Set the appearance of individual summaries inside the summary footer
	this.ultraGrid1.DisplayLayout.Override.SummaryValueAppearance.TextHAlign = HAlign.Right;
	this.ultraGrid1.DisplayLayout.Override.SummaryValueAppearance.BackColor = Color.White;
	this.ultraGrid1.DisplayLayout.Override.SummaryValueAppearance.ForeColor = Color.Black;			

	// Set the border style for summaries in the footer.
	this.ultraGrid1.DisplayLayout.Override.BorderStyleSummaryValue = UIElementBorderStyle.Solid;

}
参照