Version

RowPropertyCategories Enumeration

Used for specifying which settings to carried over from grid rows to print rows when printing.
Syntax
'Declaration
 
Public Enum RowPropertyCategories 
   Inherits System.Enum
public enum RowPropertyCategories : System.Enum 
Members
MemberDescription
AllAll of above.
AppearancesVarious appearance settings on the rows (Appearance, CellAppearance etc.).
CellAppearanceAppearance property on the cell objects.
CellEditorSettingsCopies over per cell Editor and ValueList (see UltraGridCell's UltraGridCell.ValueList and UltraGridCell.Editor) settings.
CompressedCardExpansionStateCopies over the expanded state of a card in Compressed UltraGridCardSettings.Style
DescriptionRow description.
ExpandedRow's expanded state (whether the row is expanded or collapsed).
HeightRow heights.
HiddenRow's hidden state (whether the row is hidden or visible). Since filtered rows are hidden, specifying Hidden is a good way to apply the filters to the print rows so all the filtered out rows in the grid also are filtered out in the print.
NoneNone.
RowSpacingBeforeRowSpacing and AfterRowSpacing settings of rows.
TagCopies over the row and cell tags.
UnboundDataUnbound cell data.
Remarks
,
Example
Following code shows how to show the print preview of the grid and how to print the grid. It demonstrates the use of RowPropertyCategories enum.

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 );
		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also