'宣言 Public Enum RowPropertyCategories Inherits System.Enum
public enum RowPropertyCategories : System.Enum
メンバ | 解説 |
---|---|
All | 上記のすべて。 |
Appearances | 行に対する各種外観設定 (Appearance、CellAppearanceなど)。 |
CellAppearance | セルオブジェクトに対するAppearanceプロパティ。 |
CellEditorSettings | EditorおよびValueList (UltraGridCel lの UltraGridCell.ValueList および UltraGridCell.Editor を参照) あたりのコピー数の設定。 |
CompressedCardExpansionState | Compressed 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 ); }