バージョン

RowPropertyCategories 列挙体

出力する場合にグリット行から出力行に送信される設定を指定するために使用されます。
シンタックス
'宣言
 
Public Enum RowPropertyCategories 
   Inherits System.Enum
public enum RowPropertyCategories : System.Enum 
メンバ
メンバ解説
All上記のすべて。
Appearances行に対する各種外観設定(Appearance、CellAppearanceなど)。
CellAppearanceセルオブジェクトに対するAppearanceプロパティ。
CellEditorSettingsEditorおよびValueList(UltraGridCel lの UltraGridCell.ValueList および UltraGridCell.Editor を参照)あたりのコピー数の設定。
CompressedCardExpansionStateCompressed UltraGridCardSettings.Styleでカードの展開された状態をコピーします。
Description行の説明。
Expanded行の展開した状態(行が展開または縮小されているかどうか)
Height行の高さ。
Hidden行が非表示の状態(行が非表示または表示されているかどうか)フィルタリングされた行は非表示なので、Hiddenを指定すると出力行にフィルターが適用され、グリッドのすべてのフィルタリングされた行が出力されます。
Noneなし。
RowSpacing行のBeforeRowSpacing設定とAfterRowSpacing設定。
Tag行タグとセル タグをコピーします。
UnboundDataアウンバウンドセルデータ。
解説
,
使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

    Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click
        ' Pass in All to specify that all settings get carried over from grid rows
        ' to the print/print-preview rows. This is used to facilitate WYSIWYG printing.
        Me.UltraGrid1.PrintPreview(RowPropertyCategories.All)

        ' Call print to actually print.
        Me.UltraGrid1.Print(RowPropertyCategories.All)
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

		private void button1_Click(object sender, System.EventArgs e)
		{
			// Pass in All to specify that all settings get carried over from grid rows
			// to the print/print-preview rows. This is used to facilitate WYSIWYG printing.
			this.ultraGrid1.PrintPreview( RowPropertyCategories.All );
			
			// Call print to actually print.
			this.ultraGrid1.Print( RowPropertyCategories.All );
		}
参照