Syncfusion.PivotAnalysis.Windows This class holds the name of the Syncfusion.Grid.Grouping.Windows assembly and provides a helper routine that helps with resolving types when loading a serialization stream and when the framework probes for assemblies by reflection. The full name of this assembly without version information: "Syncfusion.Grid.Grouping.Windows" A reference to the for the Grid assembly. The root namespace of this assembly. Used internally for locating resources within the assembly. Initializes the class. This delegate helps with resolving types and can be used as a event handler for a event. The source of the event. The event data with information about the type. A reference to the assembly where the type is located. Use this handler when reading back types from a serialization stream saved with an earlier version of this assembly. The Syncfusion namespace contains classes that define value data types, reference data types, events, event handlers, interfaces and attributes. Represents the functionality of a pivot table, which is a data summarization tool that automatically sorts, count and total the table data and represents in cross tabular format. To use this control, you must assign some IList object to the property. The IList object must have public properties, which you want to use it in the pivot table. To represent the data in cross tabular format, you need to specify the pivot information in , and properties. Gets or sets the collection of . _Filters is renamed to PivotFilters, it is because an underscore - shouldn't start an identifier with a visible (public/protected) field- this violates CLS compliant Declared as Public since it is used in GroupBar.cs FieldInfo collection for default fields. PivotItem collection for PivotRows. PivotItem collection for PivotColumns. PivotCalculation collection. PivotItem collection for PivotFields. Initializes a new instance of the class with the specified . The instance of class. Initializes a new instance of the class. Calculates the group bar size. Refreshes the layout of . It will repopulate the PivotEngine if True. Populates the default property fields. Resets the pivot data (resets the pivot engine, pivot rows, pivot columns, pivot fields, pivot calculations and items source). This example shows how to reset the data displayed in the pivot grid table. Expands all the grouped rows. This example shows how to expand all the row groups. Expands all the grouped columns. This example shows how to expand all the column groups. Expands all the groups. This example shows how to expand all groups. Collapses all the grouped rows. This example shows how to collapse all the row groups. Collapses all the grouped columns. This example shows how to collapse all column groups. Collapses all the groups. This example shows how to collapse all the groups. Expands the row for the specified unique text. An unique way of representation for the header cell which has a parent cell . This example shows how to expand a specific row. Expand the rows for provided array of unique text. Array of Unique text of the Expander headers. This example shows how to expand a list of rows. myExpandingRows = new List(); myExpandingRows.Add("Total"); myExpandingRows.Add("StateId"); myExpandingRows.Add("Amount"); this.pivotGridControl1.TableControl.ExpandRow(myExpandingRows); ]]> Collapses the row for the specified unique text. An unique way of representation for the header cell which has a parent cell . This example shows how to collapse the specific row. Collapse the rows for the specified unique text. Array of Unique text of the Expander headers. This example shows how to collapse a list of rows. rowColapsed = new List(); rowColapsed.Add("Total"); rowColapsed.Add("StateId"); rowColapsed.Add("Amount"); this.pivotGridControl1.TableControl.CollapseRow(rowColapsed); ]]> Expands the column for the specified unique text. An unique way of representation for the header cell which has a parent cell . This example shows how to expand a specific column with the given column mapping-name. Expand the Columns for provided array of unique text. Array of Unique text of the Expander headers. This example shows how to expand the list of columns. myExpandingColumns = new List(); myExpandingColumns.Add("Total"); myExpandingColumns.Add("StateId"); myExpandingColumns.Add("Amount"); this.pivotGridControl1.TableControl.ExpandColumn(myExpandingColumns); ]]> Collapses the column for the specified unique text. An unique way of representation for the header cell which has a parent cell . This example shows how to collapse a column with a specified column header-mapping name. Collapse the Columns for the specified unique text. Array of Unique text of the Expander headers. This example shows how to collapse a list of columns. collumnColapsed = new List(); // Columns to be collapsed. collumnColapsed.Add("Total"); collumnColapsed.Add("StateId"); collumnColapsed.Add("Amount"); this.pivotGridControl1.TableControl.CollapseColumn(collumnColapsed); ]]> Invalidates the cells. Invalidates a range of cells. range to be invalidated To synchronize the column or row items with the pivot grid control. The that contains the event data. Represents the boolean value. To synchronize the calculation items with the pivot grid control. The that contains the event data. Raises the OnExpanding event. The instance containing the event data. Information about specific cell. Raises the OnCollapsing Event. The instance containing the event data. Stores the information about cell. Handles the PropertyChanged event of the CellStyle control. The source of the event. The instance containing the event data. Gets the column list. Position of the selected item. List of columns in selected item. Gets the row list. Position of the selected item. List of rows in selected item. Synchronizes the Picot grid. The that contains the event data. Performs the Expand or Collapse operations. Row index. Column index. Refreshes the control without affecting persistence of expand or collapse states. Used Internally to process BorderColor of bitmap. The bitmap to be processed. A bitmap. Removes every nodes that are in collapsed state. Performs the Row columns operations. Performs the grand total operations. If PivotEngine is Null Performs the Sub-total operations. If PivotEngine is Null. Raises the Grid Selection event. The instance containing the event data. Raises the OnCollapsed Event. The instance containing the event data. Raises the hyper-link cell click. The instance containing the event data. Raises the Data refreshing event. The that contains the event data. Triggered when the data gets refreshed. The that contains the event data. Raises the on OnExpanded Event. The instance containing the event data. Disables the Busy Animation Icon. Disables the Busy Animation Icon. Initializes the Grid model. Occurs before the current cell switches into edit mode. The source of the event. The that contains the event data. When overridden in a derived class, is invoked whenever application code or internal processes call . Overridden to raises the cell drawn event. The that contains the event data. Overridden to handle the PivotGridControl changed to RTL mode. The that contains the event data. Initialize the touch selection operation or touch scrolling operations. Touch position when panning operation start Returns false when do other operations like selection Handles the touch selection or scrolling operations Current touch position Used to check the swipe scrolling operation occurs in the control. When isSwipeScroll is true then cancel the operations while doing selection operations. Retruns false if do the selection process. Otherwise return true Call the mouse up method when selection process done, otherwise call the base method to end the panning operation. touch control end point Return false when resizing or selection or dragging process done Occurs when the OnShowDisabledGroupBackground property gets changed. The source of the event. The contains the event data. Occurs before selecting a range of cells. The source of the event. The that contains the event data. Synchronize the PivotEngine. Triggered when the pivot schema gets changed. The source of the event. The contains the event data. Raises expanding and expanded events for the provided cell information. Cell information to be expanded. Row index of the expander cell. Column index of the expander cell. Raises collapsing and collapsed events for the provided cell information. Cell information to be expanded. Style of the cell. Row index of the expander cell. Column index of the expander cell. Updates the merged cells that needs to be modified in PivotGridControl while populating the Grid. This method is used for Asynchronous data processing using Background Worker. This has been implemented for .Net Framework version below 4.0. Adds the pivot item as collection to internal check with PivotschemaDesigner. The PivotItem to be added in the collection Used for populating completeTablelist dictionary with fieldHeader/ fieldMapping Name as key. Triggered to invalidate the GroupBar. Triggered if the Expand or Collapse button is clicked. The source of the event. The that contains the event data. Gets the cell hash key. Row index. Column index. Point. Removes the cached value from the cell. Row index. Column index. Computes the cached value of a cell. Row index. Column index. String. Computes the Row value for Expand or Collapse operation. Row index. Column index. To collapse the row groups by hide the rows. The from row index to hide. The last row index to hide To expand the row groups by unhide the rows. The from row index to hide. The last row index to hide To collapse the column groups by hide the columns. The from row index to hide. The last row index to hide To expand the column groups by unhide the columns. The from row index to hide. The last row index to hide Computes the Column value for Expand/Collapse operation. Row index. Column index. Sets the collapsed Column range. Row index. Column index. Provides the information regarding the collapsed columns. Row index. Column index. Index of collapsed columns. Performs collapsed Row range computations. Row index. Column index. Provides info regarding the collapsed Rows. Row index. Column index. Index of collapsed rows. Sets the CellValue. Provides style properties of the cell. Provides info regarding the specific cell. Specifies the cell type. Triggered and provides info regarding the GridModel. The source of the event. The that contains the event data. Sets the scrollbar style for the required theme Applies style from the supplied values. GridStyleInfo GridStyleInfo Gets the associated measure. The cell information. Index of the row. Index of the column. The field name, if there is no Pivot calculations; Otherwise the formatted text of the specified cell. Fills the selected items with appropriate row, column and value based on the specified range. The Grid range information. Checks whether the given row index is in row hidden group. The row index. Returns true, if row is within hidden row group; otherwise, false. Checks whether the given column index is in column hidden group. The column index. Returns true, if column is within hidden column group; otherwise, false. This method is used to validate the refresh event of PivotEngine. Triggered if current cell in the grid gets activated. The source of the event. The event data Triggered when the pivot item show subtotals property gets changed. The Control. The that contains the event data. Triggered when the filter items collection gets changed. The Control. The that contains the event data. Triggered when the Pivot rows collection changed. The source of the event. The contains the event data. Triggered when the Pivot columns collection gets changed. The source of the event. The that contains the event data. Triggered when the calculations collection gets changed. The source of the event. The that contains the event data. Triggered when the filters collection gets changed . The source of the event. The that contains the event data. Triggered when the Item source gets changed. The source of the event. The that contains the event data. Occurs when the property value gets changed. Occurs when the instance value gets changed. Used to handle the Expanding event Used to handle the Expanded event Used to handle the Collapsing event Used to handle the Collapsed event Used to handle the HyperlinkCellClick event Used to handle the DataRefreshing event Used to handle the DataRefreshed event Used to handle the event that has no event data. Gets or sets the value of metro style. Gets or sets a value indicating whether the system theme should be customized or not. trueif the system theme is customized; otherwise, false. The default value is false. Gets or sets source of data for this pivot table. This object should be either an IEnumerable list, or a DataTable. This example shows how to use the ItemSource property. Gets or sets the VisualStylesDrawing object. Gets or sets the VisualStyles (skins) like Office2010, Office2007, Office2003. This example shows how to use the GridVisualStyles property. Gets or sets the collection of . This example shows how to use the NewRuleConditionalFormat property. Gets the collection of . This example shows how to use the PivotRows property. Gets the collection of . This example shows how to use the PivotColumns property. Here "Country" is the field's mapping name and "Total" is the header. Gets the collection of . Gets the collection of . This example shows how to use the PivotCalculations property. Gets the collection of . Gets or sets a value indicating whether the supplied data is dynamic or not. true if dynamic data is set; otherwise, false. The default value isfalse. Gets or sets a value indicating whether the subtotal values should be shown or not. truethe subtotal values is shown; otherwise, false. The default value is true. Gets or sets a value indicating whether to enable or disable the filtering. true if the filtering is enabled; otherwise, false. The default value istrue. Gets or sets a value indicating whether to enable or disable the sorting. true if the sorting is enabled; otherwise, false. The default value istrue. Gets or sets a value indicating whether to enable or disable the grouping bar. true if the grouping bar is enabled; otherwise, false. The default value is false. Gets or sets a value indicating whether the calculations should be appeared as columns or not. true if the calculations are shown as columns; otherwise, false. The default value istrue. Gets or sets the . Gets a collection of instances that hold field names which are visible in the engine. The names can be either public property names of the underlying data objects, or they can be expression field. If your data contains fields that you do not want exposed to the pivoting process, then add the names of the properties you want to include to this list. All other fields will be excluded. If you leave this collection empty, the default behavior will be to make all public properties available for use in the pivot table. To add an expression field, set the FieldInfo.FieldType to FieldsType.Expression and set FieldInfo.Expression to be a string holding a well formed expression defining the value that should appear in this field. Gets or sets a value indicating whether the engine of this control is internally created or supplied from external source. true if the external engine is set; otherwise, false. The default value is false. Gets or sets a value indicating whether the column and row headers should be frozen or not. true if the headers are frozen; otherwise, false. The default value is false. Gets or sets a value indicating whether the layout should be updated immediately for dynamic change in PivotGrid's information or it should wait for a Refresh() call. true if the layout waits for the Refresh() call; otherwise, false. The default value is false. Gets or sets a value indicating whether the grand total calculations should be computed by the engine or not. true if the calculations are computed by the engine; otherwise, false. The default value is true. Gets or sets a value indicating whether to allow selection of cells as in Excel or not. true if the selection is enabled; otherwise, false. The default value is false. Gets or sets a value indicating whether the filtering option is enabled for RowPivotsOnly mode. true if the filtering is enabled; otherwise, false. The default value is true. Gets or sets the value of GroupBar. Gets or sets the value of Row GroupBar. Gets or sets the FilterBar for FilterArea. Gets or sets the value of grid column list. Gets or sets the value of grid row list. Gets or sets the value of filter list. Gets or sets the value of GridValueList. Gets or sets the value of field list in the pivot table. Gets or sets the selected items. The selected items. Gets or sets the hidden row groups. Gets or sets the hidden column groups. Gets or sets the hidden sub-total row groups. Gets or sets the hidden sub-total column groups. Gets or sets a value indicating whether the PivotGrid control needs to be updated asynchronously on the background while PivotGrid operations are done. Gets or sets the icon that needs to be displayed while Asynchronous loading takes place. Denotes whether PivotGridControl is in Async mode. Gets or sets a value indicating whether to update the grid layout or not. IfTrueupdates the Grid layout;OtherwiseFalse. Gets or sets a value indicating whether to ignore refreshing or not. IfTrueignores the refresh;Otherwise;False. Gets or sets the PivotGrid control. Gets or sets a value indicating whether the PivotGridControl is used to analyze data only with rows, or with both rows and columns. IfTrueSets only the rows;OtherwiseFalseand sets both rows and columns.The default value isFalse. Gets or sets a value indicating whether to enable or disable editing the cells. IfTrueEnables the editing;OtherwiseFalse. The default value isFalse. Gets or sets the PivotEditingManager reference to PivotGridControl. Gets or sets a value indicating whether to enable or disable updating the cells. IfTrueEnables updating;OtherwiseFalse. The default value is False. Gets or sets the PivotUpdatingManager reference to PivotGridControl. Represents a control that allows the user to filter required data. Initializes a new instance of the class with the specified . The that holds the control. Raises the Paint event. The PaintEventArgs that contains the event data. Sets the items that are displayed in the Filter drop down. Determines whether at-least one of the item gets selected. TrueIf at-least one item gets selected;OtherwiseFalse. Method to close the filter drop down. Triggered when the selected nodes collection is changed. The source of the event. The that contains the event data. Triggered when the OK-button of the filter drop down is clicked. The source of the event. The that contains the event data. Triggered when the CANCEl- button of the filter drop down is clicked. The source of the event. A contains the event data. Triggered when the check state of the items modified in the Filter drop down. The source of the event. The that contains the event data. Required designer variable. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Gets or sets the that holds the control. The grid control. Gets or sets the collection of filter items. Provides functionality for filtering the items in . Initializes a new instance of the class. Initializes a new instance of the class with the specified . The instance of the class. A helper function which is used to return only the filtered items of the field. The filtered items. A helper function which is used to return all the items bounded with the item source. The items in the FilterCollection. Gets the comparer for filter items collection. Property type of the item. IComparer Gets the property descriptor of the field. Name of the field to perform calculations. The name of the field to be used in calculations. Get the PropertyDescriptor for complex property Which can describes PropertyDescriptorCollection. Column name. Defines the constants that specifies the auto size option for the pivot grid. All rows will be resized. None of the rows will be resized. The value specified in AutoSizeRowCount will be resized. The Grand Total rows will be used to determine column size. Represents a class that provides the constants for PivotGridControl. Used to store the string as constant. Used to store the string as constant. Represents the common class. Represents a class that performs reverse order comparison. Used to assign reverse order comparer to PivotItem. The comparer. Used to assign reverse order comparer to PivotItem. Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. The first object to compare. The second object to compare. A signed integer value that indicates the relative values of the given objects. Represents a group bar control that holds filter items specified in the . Initializes a new instance of the class. Initializes a new instance of class with the specified . The that holds the . Invalidates the entire surface of the control and causes the control to be redrawn. Opens the created drag window and initiates the painting in drag operation. Updates the DragWindow to the current mouse position. Closes the drag window which usually done in mouse up. Gets the location of the drag window. Point. Opens the created arrow bitmap and initiates the painting in drag operation. Updates the arrow bitmap to the current location of drag window. Closes the indicator which is usually done at mouse up. Helper function which is used to apply the size of the cells in the FilterBar. An alternate solution to avoid events. Helper function which is used to apply the value to the cells in the FilterBar. An alternate solution to avoid events. Raises the event. A that contains the event data. Overrides and triggered when the row height is changed. The that contains the event data. Raises the event. A that contains the event data. Raises the event. A that contains the event data. Raises the event. A that contains the event data. Creates the arrow indicator which used for indicating the dropping location. Bitmap. Creates a header bitmap which used in drag-window. Group bar. Row index. Column index. Bitmap. Triggered when the FilterBar button is clicked. The source of the event. The that contains the event data. Performs the reset operations on covered range cells. Wires FilterBar to the Grid. Triggered when the pop-up container is closed. The source of the event. The that contains the event data. Triggered when the Filter's collection gets changed. The source of the event. The that contains the event data. Gets the value of the that holds the . Represents a group bar control that groups pivot items added to . Initializes a new instance of the class. Initializes a new instance of the class with the specified . The that holds the control. Invalidates the entire surface of the control and causes the control to be redrawn. Gets the field index value for a given column index. The column index. The field index. Opens the created drag window and initiates the painting in drag operation. Updates the DragWindow to the current mouse position. Gets the location of the drag window. Point. Closes the drag window which usually done in mouse u.p Opens the created arrow bitmap and initiates the painting in drag operations. Updates the arrow bitmap to the current location of drag window. Closes the indicator which is usually done at mouse up. Helper function which is used to apply the size of the cells in the GroupBar. An alternate solution to avoid events. Helper function which is used to apply the value to the cells in the GroupBar. An alternate solution to avoid events. An application-defined function that processes messages sent to a window. Overrides and triggered when the mouse down event is done. The that contains the event data. Overrides and triggered when the mouse move event in the grid is performed. The that contains the event data. Overrides and triggered when the mouse up event is performed in the grid. The that contains the event data. Overrides and triggered when the row height is changed. The that contains the event data. Overrides and triggered when the cell is drawn to display the text. The that contains the event data. Overrides and triggered when the changes occurred in formating. The that contains the event data. Triggered when the group bar's cell button is clicked. The source of the event. The that contains the event data. Triggered when the pop-up container is closed. The source of the event. The that contains the event data. Triggered when sorting is to be performed on the group-bar cell is clicked. The source of the event. The that contains the event data. Performs the sorting operations. The column index. The sorted index. The row index. Creates a header bitmap which used in drag-window. Group-bar. Row index. Column index. Bitmap. Creates the arrow indicator which is used for indicating the dropping location. Bitmap. Triggered when the pivot calculations are changed. The source of the event. The that contains the event data. Wires GroupBar to the Grid. Gets the value of parent control. Provides functionality for dragging items in control. Initializes a new instance of class. Performs the drag operation. Drags the group to the specified point. The specified point. The that contains the event data. Cancels the dragging operations. Stops the dragging operations. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Checks the drag cursor's effects. Used internally. Halts the drag operations. Used internally. Gets the value of last drag and drop effect. Gets a value indicating whether the dragging is done or not. true if the dragging is done; otherwise false. The default value is false. Gets the value of the drag window. Represents a class for PivotGrid group-drag window. Used internally. Initializes a new instance of class. Determines whether to start the drag operation. Point. true if allows to start drag operation; otherwise, false. Determines whether to the move the drag window. Point. true if allows the drag-window to move; otherwise, false. Determines whether to stop the drag operation. true if drag operation is stopped; otherwise, false. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Sets the size of the group drag window. Point. Gets or sets the bitmap image. Represents a class that compares the given two objects. Initializes a new instance of class with the specified . The . Compares the given two given objects. Object1. Object2. A signed integer that indicates the relative values of x and y. Represents the method that will handle the event. The source of the event. A that contains the event data. Provides methods to handle the editing related events happened in PivotGrid control. Initializes a new instance of the class with the specified . The pivot grid control that handles editing values. Gets the list of pivot values based on specified row and column indices. The row index of the cell. The column index of the cell. Returns the name of the calculated field at the specified row and column indices. Returns a list of row and column pivot values. The returned list is an ordered list of the pivot values that contain row pivot values followed by the column pivot values. There is a one to one correspondence between the number of items in and then to this returned ordered list. Redo the last handled operation. Undo the last handled operation. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Updates the cell with the edited value. The cell value before editing the cell. The cell value after editing the cell. The row index of the cell. The column index of the cell. The information about the edited cell. Wires the required events in to the TableControl. Unwire the events from thethis.tableControl. Returns the name of the field corresponding to the index. Field name. Updates the cell with new edited/updated value. Old values of the cell. New values of the cell. Row index. Column index. The changed property. Gets the index of the next summary row with respect to the column index provided. Row index. Column index. summary row index. Gets the index of the next summary row with respect to the Row index provided. Row index. Column index. summary row index. Triggered when the Key down is pressed. The source of the event. The that contains the event data. Triggered when the control lost the Focus. The source of the event. The that contains the event data. Triggered when the cell needs to save the information. The source of the event. The that contains the event data. Occurs after the cell completes the editing Occurs when the pivot values are edited. Gets or sets a value indicating whether the expanders should be visible or not. true if the expanders are visible; otherwise, false. Gets or sets a value indicating whether the user can edit total cells or not. true if the editing of total cells; otherwise false . Provides data for the event. Gets or sets a value indicating whether the event is handled. true if the event is handled; otherwise, false. The default value is false. If the event is not handled, the will adjust the changed cell and any cell that depends upon it. Set this property value as true to cancel the event. Gets the row index of the edited cell. Gets the column index of the edited cell. Gets the information of the edited cell. Gets the cell value before editing the cell. Gets the cell value after editing the cell. Represents a pair of row and column indices. Initializes a new instance of the structure with the specified row and column indices. The row index. The column index. Determines whether the specified object is equal to the current object. The object to compare with the current object. true if the specified object is equal to the current object; otherwise, false. Serves as the default hash function. A hash code for the current object. Returns a string that represents the current object. A string that represents the current object. Determines whether two specified objects have the same value. The first row column index value to compare. The second row column index value to compare. true if the value of r1 is the same as the value of r2; otherwise, false. Determines whether two specified objects have different values. The first row column index value to compare. The second row column index value to compare. true if the value of r1 is different from the value of r2; otherwise, false. Gets the empty row and column coordinates containing values of . The empty. Gets or sets the column index. Gets or sets the row index. Gets a value indicating whether this instance is empty or not. true if this instance is empty; otherwise, false. The default value is false. Represents the class that allows the PivotGrid control to automatically respond to the changes happened in the underlying data. To enable this support, property must be set to true. In order to automatically respond to the changes happened in the underlying data, PivotGrid's data must be either: a DataTable or a DataView or an IList<T> where T implements both INotifyPropertyChanging and INotifyPropertyChanged interfaces.
Additionally, IList must also implement INotifyCollectionChanged or IBindingList."
Initializes a new instance of the class with the specified . The pivot grid control that responds to updates in the underlying data. Initializes the updating manager with the associated settings of . The . UnWire the events from the PivotEngine. Populates the engine values and refreshes the PivotGrid control. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Checks the index of the cell to be updated. The row index of the cell. The column index of the cell. Updates the cell in the given index. Row index. Column index. Occurs when the timer tick changed. The source of the event. The class contains the event data. Gets or sets the millisecond value representing the time between UI refreshes. The default value is zero which refreshes the UI without delay. Depending upon the throttle rate, the CPU usage differs. For example, values of 300 to 500 Milliseconds may minimize the CPU usage. Implements the Office 2010 look and feel Draws the header skins A object. A object that represents the drawing area. The current state of the header. Returns the Header Border Colors. The bottom border color The right border color The gradient start color for the header interior The gradient end color for the header interior Returns the Header Border styles. The bottom border color of header. The bottom border weight. returns the weight and color of bottom border. Returns the SortIcon interior The brush used to fill the sort icon The pen used to draw the sort icon Returns the backcolor and header interior for GroupDropArea. The back color for GroupDropArea The top border color for GroupDropArea header The left border color for GroupDropArea header Header style color of Grid Header color hover color pressed color Draws the PushButton skins A object. A object that represents the drawing area. The current state of the button. Draws the ComboBox skins A object. A object that represents the drawing area. The current state of the combo button. Draws the SpinButton skins A object. A object that represents the drawing area. An integer that represents the type of the button. The current state of the spin button. Draws the CheckBox skins A object. A object that represents the drawing area. The current state of the checkbox Specifies whether the button is tri-stated. Draws the CheckBox skins A object. A object that represents the drawing area. The current state of the checkbox Specifies whether the button is tri-stated. Specifies whether the button is intermediate state Draws the RadioButton skins A object. A object that represents the drawing area. The current state of the radio button Gets the current VisualStyles. Gets the current theme name. Provides data for the event. Initializes a new instance of the class. The value of the item before the change. The value of the item after the change. Provides data for the event. Initializes a new instance of the class. Provides data for the event. Initializes a new instance of the class. Provides data for the event. Initializes a new instance of the class. The grid range information. Indicates the selected items in the grid. Represents the selection reason for the grid. Initializes a new instance of the class. Indicates the selected items in the grid. Gets or sets the range information of the cell. The range information of the cell. Gets or sets the value of selected items in the IEnumerable form. The selected items. Gets or sets the reason for selection. The selection reason. Provides data for the event. Initializes a new instance of the class. Gets or sets the information about pivot cell. Provides data for the event. Initializes a new instance of the class with the specified . The information about the pivot cell. Gets or sets the information about pivot cell. Provides data for the event. Initializes a new instance of the class with the specified . The information about the pivot cell. Gets or sets the information about pivot cell. Provides data for the event. Initializes a new instance of the class with the specified . The information about the pivot cell. Gets or sets the information about pivot cell. Provides data for the event. Initializes a new instance of the class with the specified . The information about the pivot cell. Gets or sets the information about pivot cell. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the grouping bar's loaded event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents a class that maintains information about the hidden group. Initializes a new instance of the class. Initializes a new instance of the class with the specified from, to, level and group name parameters. The start range value. The end range value. The level value. The group name. Initializes a new instance of the class with the specified from, to, level, group name and total header parameters. The start range value. The end range value. The level value. The group name. The total header value. Returns a string that represents the current . A string that represents the current . Creates a new object that is a copy of the . The object that is to be cloned. A new object that is a copy of . Gets or sets the start range value. Gets or sets the end range value. Gets or sets the level value. Gets or sets the group name. Gets or sets the header of total item. Represents the class that defines as an extension class to class. Determines whether the specified item is in the collection or not. The Collection. The hidden group. Represents the class Provides the functionality to metro color definition for usability. Gets or sets the value of back color. Gets or sets the value of fore color. Represents the class that defines to customize the Color option for the GroupBar. Gets or sets the value of back color. The default color is Color.FromArgb(246, 247, 247); Represents the class that defines to customize the Color option for the FilterBar. Gets or sets the value of back color. The default color is Color.FromArgb(35, 130, 195); Gets or sets the value of fore color. The default value isWhite. Represents the class that defines to customize the Color option for the RowGroupBar. Gets or sets the value of back color. The default color is Color.FromArgb(246, 247, 247); Represents the class that defines to customize the Color option for the PivotTotalCell. Gets or sets the value of back color. The default color is Color.FromArgb(246, 247, 247); Gets or sets the value of fore color. The default value isColor.FromArgb(92, 92, 92); Represents the class that defines to customize the Color option for the PivotExpandCell. Gets or sets the value of back color. The default color is Color.FromArgb(246, 247, 247); Gets or sets the value of fore color. The default value isFromArgb(92, 92, 92); Represents the class that defines to customize the Color option for the PivotNormalCell. Gets or sets the value of back color. The default color is Color.FromArgb(246, 247, 247); Gets or sets the value of fore color. The default value isColor.FromArgb(92, 92, 92); Represents the class that defines to customize the color options for the PivotFieldList in Metro theme. Gets or sets the value of back color. The default value isWhite. Gets or sets the value of fore color. The default value isWhite. Gets or sets the value of list in field images. Represents a class that defines to customize the color options for the PivotFieldList's Headings in Metro theme. Gets or sets the value of back color. The default value isColor.FromArgb(35, 130, 195); Gets or sets the value of fore color. The default value isWhite. Represents a class that defines to customize the color options to the PivotFieldList's Buttons in Metro theme. Gets or sets the value of back color. The default value isColor.FromArgb(35, 130, 195); Gets or sets the value of fore color. The default color is White. Represents a class that defines to customize the color options for the PivotItems in Metro theme. Gets or sets the value of back color. The default color is Color.FromArgb(35, 130, 195); Gets or sets the value of fore color. The default color is White. Gets or sets the value of border color. The default color is Gray. Represents a class to defines to customize the color options for the PivotFieldList in Metro theme. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Gets or sets the instance value. Gets or sets the instance value. Gets or sets instance value. Gets or sets instance value. Represents a Class that defines to customize the Metro color options to the PivotGrid. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Gets or sets the metro colors for column group bar in . Gets or sets the metro colors for filter bar in . Gets or sets the metro colors for row group bar in . Gets or sets the metro colors for pivot table field list associated with the . Gets or sets the instance value. Gets or sets color to the PivotGridExpanderCell. Represents a class that provides the Exception info of the PivotGrid control. Initializes a new instance of the class inherited from the class. Initializes a new instance of the class inherited from the class. The message that describes the error. Initializes a new instance of the class inherited from the class. The message that describes the error. The exception that is the cause of the current exception, or a null reference. (Nothing in Visual Basic) if no inner exception is specified. Defines the constants that are used for searching help. Represents Syncfusion. Represents Forums. Represents Knowledge Base. Represents a control that defines the pivot grid control with visual representation. Represents a control that defines the pivot grid control with visual representation. Handles filter calculation in pivotGrid. Gets or sets the collection of base items. Initializes a new instance of the class. Initializes a new instance of the class with the specified . The instance that provides the functionality of container. Serializes the PivotGrid to XML file in desired location using the save file dialog. Serializes the PivotGrid to specified XML file. The file name. Serializes the PivotGrid to XML file with specific serialization options. The file name. The options to include/exclude the pivot grid properties during serialization. Serializes the PivotGrid as stream and saves it in the default location. The stream data. Serializes the PivotGrid as stream with specific serialization options. The stream data. The options to include/exclude the pivot grid properties during serialization. Serializes the PivotGrid to string format. The serialized XML content in string format. Deserializes the PivotGrid from the desired XML file, selected using the open file dialog. Deserializes the PivotGrid from the specified XML file. The file name. Deserializes the PivotGrid from the specified XML file with the specified deserialization options. The file name. The options to include/exclude the pivot grid properties during deserialization. Deserializes the PivotGrid from the specified file stream. The stream data. Deserializes the PivotGrid from the specified file stream with specific deserialization options. The stream data. The options to include/exclude the pivot grid properties during deserialization. Deserializes the PivotGrid with the settings specified in the XML string. serialized file in xml string format Performs the filtering operation. Uses the contents of to display pivot results filtered using calculation values. Any previous filters optionally cleared depending upon clearExisitingFilter passed This method only affects the display when is set to true. Boolean value. Clears the filters and redraws the pivot display. This example shows how to clear the filters enabled in the grid. Clears the filters that depends on refreshing the . Boolean value. IfTrueThe pivot grid display is redrawn.Otherwise False. This example shows how to clear filters enabled in the grid. Re-applies the filter when the sorting is done. Applies the scaling to the . Represents floating number. Refreshes the . Determines whether to populate the engine or not. Refreshes the . Performs visual representation. Contains the components with visual representation. Creates the new instance of the class specifying the functionality of . The grid model. A new instance. Gets the field index for the given column index. Column index. Field index. This example shows how to get the field index of the specific column index. Gets the column index for the corresponding field name specified. Stores the field name. Column index. This example shows how to get the column index with the specified field name. Performs the sort operation. Row index. Column index. Intermediate index Opens the created arrow bitmap and initiates the painting in drag operation. Updates the arrow bitmap to the current location of drag window. Location of the arrow indicator. Closes the indicator which usually done at mouse up. Opens the created drag window and initiates the painting in drag operation. Updates the DragWindow to the current mouse position. Gets the location of the drag window. Location of the drag window. Point. Closes the drag window which usually done in mouse up. Raises the filter action completed event. The source of the event. The that contains the event data. Hides all the empty groups from the pivot display. Collapses the schema in the PivotGrid control. Defines the schema of the PivotGrid control. Gets the column index from the corresponding row header name. Row header name. Column index. Gets the field name from the corresponding column index. Column index. Field name. Triggered when the Asynchronous process is completed. The Event Arguments. Triggered when the Asynchronous process is started. The Event Arguments. Overrides and handles the Right-to-Left changed event. The that contains the event data. Raises the ShowDisabledGroupbackground property changed event. The source of the event. The that contains the event data. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Performs the new calculation on the item. New item to be calculated. Creates a header bitmap which used in drag window. Group bar. Row index. Column index. Bitmap. Creates the arrow indicator which used for indicating the dropping location. Bitmap. Performs the sort operation that specifies the multi-column sort. Column index. Boolean value. Sort direction. Gets the back color. Gets the pen and brush to paint string in label. Attaches the schema with the GridControl. Detaches the schema with the PivotGrid control. Expands the schema in PivotGridControl. Triggers and gets the Paint attributes in the label. The source of the event. The that contains the event data. Triggers and expands the Schema in the PivotGrid control. The source of the event. The that contains the event data. Triggered when the Asynchronous process is completed. The Event Arguments. Triggered when the Asynchronous process is started. The Event Arguments. Triggered when the InternalGrid's ItemSource list changed event. The source of the event. The that contains the event data. Triggered when the close label's mouse leave event is done. The source of the event. The that contains the event data. Triggered when the close label's mouse hover event is done. The source of the event. The that contains the event data. Triggered and closes the pop-up window. The source of the event. The that contains the event data. Triggered when the panel1 is painted. The source of the event. The that contains the event data. Customizes the display of pivot value chooser in header. The source of the event. The that contains the event data. Triggered and hides or shows the selected column name in pivot value chooser. The source of the event. The that contains the event data. Triggered and gets the column width. The source of the event. The that contains the event data. Triggered and checks the checked list box items's check state. The source of the event. The that contains the event data. Triggered when the mouse up event is done. The source of the event. The that contains the event data. Triggered when the mouse move event is done. The source of the event. The that contains the event data. Triggered when the mouse down event is done. The source of the event. The that contains the event data. Triggered when the Table control cell button is clicked. The source of the event. The that contains the event data. Triggered when the table control's cell is clicked. The source of the event. The that contains the event data. It contains the value of the property. Helps to apply the ControlName settings in control ControlName Sets the height of the grids used for internal purpose. Helps to apply the ThemeName settings in control ThemeName Method is used to set theme name for internal components. Helps to apply the CanOverriderStyle settings in control CanOverriderStyle Helps to apply the CanApplyTheme settings in control CanApplyTheme Occurs when the property value gets changed. Occurs when the property changed event occurs. Occurs when the Filter action gets completed. Handles the AsyncCompleted event. Handles the AsyncStarting event. Gets or sets the value of VisualStylesDrawing object. Gets or sets the enumeration value. This example shows how to use the GridVisualStyles property. Gets the collection of . This example shows how to use the PivotColumns property. Here "Country" is the field's mapping name and "Total" is the header. Gets the collection of . Gets the collection of . This example shows how to use the PivotRows property. Gets the collection of . Gets the collection of . This example shows how to use the PivotCalculations property. Gets or sets a value indicating whether the layout should be updated immediately for dynamic change in PivotGrid's information or it should wait for a Refresh() call. true if the layout gets updated immediately; otherwise, false. The default value is false. Gets or sets a value indicating whether to enable or disable asynchronous loading of a given . true if the asynchronous loading is enabled; otherwise, false. The default value is false. Enable this property, when the given instance needs to be updated asynchronously on the background while other pivot operations are done. Gets a value indicating whether the given instance is in asynchronous mode or not. true if the asynchronous loading is enabled; otherwise, false. The default value is false. Gets or sets the value that needs to be displayed while Asynchronous process takes place. Gets or sets a value indicating whether the calculations should be shown as columns or not. true if the calculations are displayed as columns; otherwise, false. The default value is true. Gets or sets the . Gets or sets the value of item source. This example shows how to use the ItemSource property. Gets or sets a value indicating whether to the is shown or not. true if the pivot table field list is shown; otherwise, false. The default value is false. Gets or sets a value indicating whether to enable or disable editing of value cells. true if value editing is enabled; otherwise, false. The default value is false. Gets or sets the value of the . This property is used only when is set to true. The EditManager handles direct editing of value cell contents. The event to allow for controlling what happens as the cell as the user leaves the cell. You should handle this event if you want to do any actions when a cell is completed. The default behavior will adjust the edit cell value so the newly typed entry is displayed. Also, any display value that depends upon this edited cell will also be updated. If you set e.Handled = true when you handle the event, then EditManager will make no changes to the displayed information, and it would be up to you to make any adjustments you want to see. The EditManager also has public properties and that control whether you can edit Total cells and whether the expander glyphs are visible. The EditManager has public method that return lists of pivot values and raw data items for a specified row and column. Gets or sets a value indicating whether to enable or disable the updating of pivot cells. true if the updating is enabled; otherwise, false. The default value is false. Gets or sets the value of . This property is used only when the is set to true. In order for the PivotGridControl to automatically respond to the changes in the underlying data, the underlying data must be either: A) a DataTable or DataView or B) an IList; where T implements both INotifyPropertyChanging and INotifyPropertyChanged. Additionally, the IList must also implement INotifyCollectionChanged or IBindingList." Gets or sets a value indicating whether to enable or disable the filtering. true if filtering is enabled; otherwise, false. The default value is true. Gets or sets a value indicating whether pivot value chooser dialog is shown or not. true if the pivot value chooser is shown; otherwise, false. The default value is false. The PivotValueChooser allows the users to hide, show, or reorder the in the mode. Note: This property is used only when the is set to true. Gets or sets a value indicating whether to enable or disable the drag and drop operation in mode. true if the dragging row is enabled; otherwise, false. The default value isfalse. This property is used only when the is set to true. Gets or sets a value indicating whether to enable or disable the sorting. IfTrueAllows the sorting;Otherwise False. Gets or sets a value indicating whether the grouping bar is shown or not. true if the group bar is shown; otherwise, false. The default value is true. Gets or sets a value indicating whether the subtotal values should be shown or not. true if the subtotal values is shown; otherwise, false. The default value is true. Gets or sets a value indicating whether the grand total calculations should be computed by the engine or not. true if the calculations are computed by the engine; otherwise, false. The default value is true. Gets or sets a value indicating whether to enable or disable the row pivots only mode. true if the pivot rows alone is set; otherwise, false and sets both rows and columns. The default value is false. Specifies whether the instance is used to analyze data only with rows, or with both rows and columns. Setting this property to true will produce the following changes: 1) ShowGroupBar property will be automatically set to false. 2) The TopLeft covered cell that normally appears in a PivotGrid is replaced with individual header cells that have the same appearance as that of Calculation header cells. Gets or sets the collection of possible instances that may appear in a given . This property is used only when the is enabled. Gets the value of row indices that are hidden through filtering value columns. This property is could be used only when the is enabled. Gets the value of instance that holds all data information about the grid. This example shows how to use the TableModel property. Gets the value of instance that implements a grid control which displays a grid model. This example shows how to use the TableControl property. Gets the value of the instance wired within the . Gets or sets a value indicating whether to enable or disable the touch mode. true if the touch mode is enabled; otherwise, false. The default value is false. Gets or sets the value used to customize the appearance of the . This ThemeStyle settings will be applied only when the VisualStyleBased theme has been applied to the control. Handles the filter operation. The source of the event. The that contains the event data. Represents a Pop-up Window control to display the PivotValueChooser. Initializes a new instance of the class with the specified . The instance that provides visual representation. The Syncfusion.Windows.Forms.PivotAnalysis namespace contains classes that implements Essential PivotGridControl for Windows Forms applications. Defines the class that extends the design mode functions of the designer. Creates the Action lists. Gets the value of the Action lists. Represents a class to create smart tags in the designer. Initializes a new instance of the class with the specific components and designer verbs. Functionality of the components. Array of designer verbs. Initializes a new instance of the class with the specific components and designer verbs. Functionality of the components. Array of designer verbs. Returns the collection of objects contained in the list. A array that contains the items in this list. Provides online links for PivotGrid Forum, KnowledgeBase and ug. Provide UG link. provide Forum link. Provide directTracLink . Gets or sets the value of . Gets or sets the value of . Renderer class for painting and drawing operations for visual style based theme. Method to draw the expander icon. Sets the CellValue. Provides style properties of the cell. Provides info regarding the specific cell. Specifies the cell type. Apply style for group bar items. Implements the render part of the Context menu. Initializes a new instance of the class. Overrides and renders the item text. The that contains the event data. Overrides and renders the Image margin. THe that contains the event data. Overrides and sets the separator back-color. The that contains the event data. Overrides and renders the split button. The that contains the event data. Implements the render part of the ContextMenu themed renderer. Initializes a new instance of the class with the specified . The to obtain the visual style. Raises the event. The that contains the event data. Draws the item background. The that contains the event data. Provides methods used to render pivot value chooser. PivotGrid control used as parent of pivot value chooser. Triggered and checks the checked list box items's check state. The source of the event. The that contains the event data. Triggered and closes the pop-up window. The source of the event. The that contains the event data. Triggered when the panel1 is painted. The source of the event. The that contains the event data. Provides methods used to render the header cell. Initializes a new instance of the class with the specified and . The instance of class. The instance of class. Raises when the event occurs. The that contains the event data. Overrides and triggers to get cursor. The row index of the current cell. The column index of the current cell. Cursor. Overrides and draws the display text. The graphics object. The row index. The column index. Style object that holds the values of style properties. The rectangle bounds of the display text. Overrides and triggers the mouse down event. The row index of the current cell. The column index of the current cell. The that contains the event data. Overrides and triggers the mouse up event. The row index of the current cell. The column index of the current cell. The that contains the event data. Overrides and triggers to draw the cell buttons. Used in the cell renderer. GDI+ surfaces. The row index of the current cell. The column index of the current cell. Represents the boolean value. Style object that holds the values of style properties. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Overrides and triggers the mouse hover event. The row index of the current cell. The column index of the current cell. The that contains the event data. Overrides and triggers the Mouse hover leave event. The row index of the current cell. The column index of the current cell. The that contains the event data. Gets the size of the filter icon to layout the buttons bound. the size of the filtericon. Overrides and triggers the OnLayout() method. The row index of the current cell. The column index of the current cell. Style object that holds the values of style properties. Represents the inner bounds of the rectangle. Represents the bounds of the cell button. Inner bounds of the rectangle. Called when the user clicks on a button inside the cell. The row index of the current cell. The column index of the current cell. The button that is clicked. Raises event when the user presses the push button. The row index of the current cell. The column index of the current cell. Provides methods used to render the template cell. Initializes a new instance of the class with the specified and . The instance of class. The instance of class. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Provides methods used to render the schema item cell with visual styles. Initializes a new instance of the class with the specified and . The grid control that holds the top left cell. The data or model part of a cell type. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Changes the cursor for the schema item cell. The row index of the current cell. The column index of the current cell.. The to be displayed. Raises the event. The row index of the current cell. The column index of the current cell.. A that contains the event data. Raises the event. The row index of the current cell. The column index of the current cell.. A that contains the event data. Draws the cell button element at the specified row and column index. The to be drawn. The context of the canvas. The row index of the current cell. The column index of the current cell.. True, if this is the active current cell; otherwise, false. The object that holds the style information for the cell. Calculates the client rectangle given the inner rectangle of a cell and any boundaries of cell buttons. This method is called from PerformLayout method. The row index of the current cell. The column index of the current cell.. The object that holds the style information for the cell. The that contains the inner bounds of the cell. An array of that contains the bounds for each cell button element. A with the bounds. Called when the user clicks on a button inside the cell. The row index of the current cell. The column index of the current cell.. The button that is clicked. Raises event when the user presses the push button. The row index of the current cell. The column index of the current cell. Represents the class to define the style for items used in control. It contains the value of the property. It contains the value of the property. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . The store. Gets the default style value of the class. Returns the default style value. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default values of instance. Gets or sets the fill color of expander. Provides storage for the object. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Implements the class that provide the identity information of using . Initializes a new instance of the class. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. It contains the value of the property. It contains the value of the property. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . The store.PivotEditItemsMenuStyleInfo Gets the default style value of the class. Returns the default style value. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default values of instance. Gets or sets the item border color. Gets or sets the item border color. Gets or sets the fore color of the item text. Provides storage for the object. Provides information about the property. Provides information about the property. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Implements the class that provide the identity information of using . Initializes a new instance of the class. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. Represents the class to define the style for items used in control. It contains the value of the property. It contains the value of the property. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . The store. Gets the default style value of the class. Returns the default style value. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default values of instance. Gets or sets the pivot value chooser background color. Gets or sets the pivot value chooser border color. Gets or sets the fore color of the pivot value chooser text. Provides storage for the object. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Implements the class that provide the identity information of using . Initializes a new instance of the class. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. Represents the class to define the style for items used in control. It contains the value of the property. It contains the value of the property. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . The store. Gets the default style value of the class. Returns the default style value. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default values of instance. Gets or sets the filter drop down background color. Gets or sets the filter drop down border color. Gets or sets the for filter drop down. Gets or sets the for filter drop down. Gets or sets the for filter drop down. Gets or sets the fore color of the filter drop down item's text. Provides storage for the object. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Implements the class that provide the identity information of using . Initializes a new instance of the class. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. Represents the class to define the style for items used in control. It contains the value of the property. It contains the value of the property. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . The store. Gets the default style value of the class. Returns the default style value. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default values of instance. Gets or sets the schema designer background color. Gets or sets the schema designer field list header background color. Gets or sets the fore color of the schema designer text. Gets or sets the fore color of the schema designer field's text for disabled items. Gets or sets the value of the schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Gets or sets the for schema designer fields. Provides storage for the object. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Implements the class that provide the identity information of using . Initializes a new instance of the class. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. Represents the class to define the style for items used in control. It contains the value of the property. It contains the value of the property. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . The store. Gets the default style value of the class. Returns the default style value. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default values of instance. Gets or sets the grouping bar background color. Gets or sets the filter header background color. Provides storage for the object. Provides information about the property. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Implements the class that provide the identity information of using . Initializes a new instance of the class. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. Represents the class to define the style for items used in control. It contains the value of the property. It contains the value of the property. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . The store. Gets the default style value of the class. Returns the default style value. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default values of instance. Gets or sets the cell background color. Gets or sets the fore color of the cell text. Gets or sets the value of the cells. Provides storage for the object. Provides information about the property. Provides information about the property. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Implements the class that provide the identity information of using . Initializes a new instance of the class. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. Represents the class to define the style for items used in control. It contains the value of the property. It contains the value of the property. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . The store. Gets the default style value of the class. Returns the default style value. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default values of instance. Gets or sets the item border color. Gets or sets the item border color. Gets or sets the sort icon fill color. Gets or sets the fore color of the item text. Gets or sets the value of the items. Provides storage for the object. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Implements the class that provide the identity information of using . Initializes a new instance of the class. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. Represents the class to define the style for control. It contains the value of the property. Initializes a new instance of the class. Initializes a new instance of the class. Holds instance of a class. Initializes a new instance of the class. A that holds the identity for this . Initializes a new instance of the class. A that holds the identity for this . Holds instance of a class Creates the sub object identity. The style info property Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Determines a value indicating whether to serialize property. True if the property was modified; Otherwise False. Gets the default style value for the control. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Gets or sets the value for styles. Provides storage for the object. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. Provides information about the property. It contains the value of the property value. Initializes a new instance of the class. Initializes a new instance of the class from a serialization stream. An object that holds all the data needed to serialize or deserialize this instance. Describes the source and destination of the serialized stream specified by info. Initializes the , if is null. Gets the static data value of the class. Represents a class that provides style identity information for nested objects of the class. Maintains the GridControl for create the identity. Initializes a new instance of the class. instance to create an identity. Occurs when a property in the has changed. The instance that has changed. A that identifies the property to operate on. Loops through all base styles until it finds a style that has a specific property initialized. A instance of Returns the . Represents a class that provides style identity information for nested objects of the class. Initializes a new instance of the class. The that owns this sub-object. The descriptor for this expandable sub-object. Implements the data or model part for the column header cell with sort indicator in the . See for more detailed information about this cell type. Initializes a new instance of the class with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Gets the formatted text value. The object that holds the style information of the cell. The value to format. TextInfo is a hint that denotes who is calling, default is GridCellBaseTextInfo.DisplayText. The formatted text of the given value. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Calculates the preferred size of the cell based on its contents without margins and any buttons. The graphics context of the canvas. The row index of the current cell. The column index of the current cell. The that holds the style information of the cell. The graphical bounds. The optimal size of the cell. Provides methods used to render the header cell with sort indicator. Provides methods used to render header cells. Initializes a new instance of the class with the specified and . The instance of class that display this cell renderer. The instance of class that holds data for this cell renderer that should be shared among views. References to and instances will be saved. Raises the event for custom formatting of a cell by changing its style object. The instance that contains the event data. Sets up mouse event hooks with the grid. Resets up mouse event hooks with the grid. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Triggered when the cell back ground is drawn. The that contains the event data. This method is called from to draw the face text of the header cell after its background has been drawn. Points to the device context. Specifies the text rectangle. It is the cell rectangle without buttons, borders, or text margins. Specifies the row id. Specifies the column id. A reference to the style object of the cell. Triggered when the outline of the current cell i to be drawn. Graphics object Rectangle bounds of the current cell. Measures the display text. Graphics object. The text to be drawn. rectangle bounds of the display text. Font of the display text. The display text. Initializes a new instance of the class with the specified and . The instance of class that displays this cell renderer. The instance of class that holds data for this cell renderer that should be shared among views. References to the and instances will be saved. Overrides and draws the Display text. The graphics object. The Column index. The Row index. The Style object that holds the values of the style properties. The rectangle bounds of the display text. Overrides and raises the OnClick event. The row index. The column index. The that contains the event data. Implements the data or model part for the expandable column header cell in the . The expandable row header cell will display '+' symbol for expanded rows and '-' symbol for collapsed rows similar to a TreeView control. See for more detailed information about this cell type. Initializes a new instance of the class with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Provides methods used to render the expand cell. Initializes a new instance of the class with the specified and . The instance of class. The instance of class. Triggered when the layout of the grid is rendered. row index value. column index value. Stores the information about the cell Represents the inner bounds of the rectangle. Represents the bounds of the rectangle. Inner bounds of the layout. Triggered when the outline of the current cell is to be drawn. The graphics object. The rectangle bounds of the current cell. Overrides and provides the information regarding the buttons to be displayed or not. The column index. The row index. The Style objects which holds the style properties. true if the buttons are visible; otherwise, false. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. This method is called from to draw the face text of the header cell after its background has been drawn. Points to the device context. Specifies the text rectangle. It is the cell rectangle without buttons, borders, or text margins. Specifies the row id. Specifies the column id. A reference to the style object of the cell. Triggered when the background of the cell is drawn. The that contains the event data. Triggered when the background of the cell button is drawn. Used for cell renderer. GDI+ surfaces. Represents the rectangle size and location. Specifies the appearance of cell. Stores information about the cell. Triggered when the button drawn in the cell. Used to cell renderer. GDI+ surfaces. The row index of the current cell. The column index of the current cell. Represents boolean value. Stores information about the cell Called when the user clicks on a button inside the cell. The button clicked. The column index. The row index. Raises event when the user presses the push button. The row index of the current cell. The column index of the current cell. Measures the display text. The graphics object. The text to be drawn. The rectangle bounds of the display text. The font of the display text. The display text. Implements the data or model part for the header cell in the . See for more detailed information about this cell type. Initializes a new instance of the class. with the specified that stores the information of rendered cells. The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Calculates the preferred size of the cell based on its contents without margins and any buttons. The graphics context of the canvas. The row index of the current cell. The column index of the current cell. The that holds the style information of the cell. The graphical bounds. The optimal size of the cell. Implements the data or model part for the hyperlink cell in the . See for more detailed information about this cell type. Initializes a new instance of the class with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Provides methods used to render the hyperlink cell. Initializes a new instance of the class with the specified and . The instance of class. The instance of class. Launches the web browser. cell style Triggered when the mouse down is pressed. The row index of the current cell. The column index of the current cell. The that contains the event data. Triggered when the mouse up is pressed. The row index of the current cell. The column index of the current cell. The that contains the event data. Triggered when the cancel mode is called. The row index of the current cell. The column index of the current cell. Triggered when the cursor is rendered. The row index of the current cell. The column index of the current cell. Cursor. Is triggered when the mouse controller is rendered. The row index of the current cell. The column index of the current cell. event data used to define the interface for mouse controllers. Returns 0 if the message is forwarded; Otherwise returns 1 for higher priority controls. Triggered when the draw is called. GDI+ surface. Represents the rectangle size and location. The row index of the current cell. The column index of the current cell. Stores the information about the cell. Triggered when the mouse hover enter is performed. row index value. The column index of the current cell. Triggered when the mouse hover leave is performed. The row index of the current cell. The column index of the current cell. The that contains the event data. Draws the hyper link. Boolean value to determine the usage of HotColor. Row index. Column index. Gets or sets the value for visited link. Gets or sets the value for active link. Gets or sets the value of browser. Implements the data or model part for the template cell in the . See for more detailed information about this cell type. Initializes a new instance of the class with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Provides methods used to render the template cell. Initializes a new instance of the class with the specified and . The instance of class. The instance of class. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Implements the data or model part for the top left cell in the . Initializes a new instance of the class with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Provides methods used to render the top left cell. Initializes a new instance of the class with the specified and . The grid control that holds the top left cell. The data or model part of a cell type. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Highlights the current cell by inverting the cells border or drawing a thick border. Points to the device context. Specifies the cell rectangle. This method can be overridden to avoid highlighting cells. Called when the user clicks inside a cell. The row index. The column index. A that contains the event data. Allows to process keyboard events before the gets the actual KeyDown / KeyUp event. The containing the data of the keyboard event. true if the key is handled; otherwise, false. Represents a control that groups the row items. Initializes a new instance of the class with the specified . The pivot grid control that holds the row group bar. Converts the corresponding column index to field index. The column index. The field index. Invalidates the entire surface of the control and causes the control to be redrawn. Processes a key message and generates the appropriate control events. Window message to process. IfTrueThe message will be processed by the control;OtherwiseFalse. Opens the created drag window and initiates the painting in drag operation. Updates the DragWindow to the current mouse position. Closes the drag window which usually done in mouse up event is done. Gets the location of the drag window. Point. Opens the created arrow bitmap and initiates the painting in drag operation. Updates the arrow bitmap to the current location of drag window. Closes the indicator which usually done at mouse up event is done. Helper function which is used to apply the size of the cells in the RowGroupBar. An alternate solution to avoid events. Helper function which is used to apply the value to the cells in the GroupBar. An alternate solution to avoid events. An application-defined function that processes messages sent to a window. Invoked when the user moves the mouse. An that contains the event data. Invoked when the user releases the mouse click. An that contains the event data. Invoked when the user performs the mouse click. An that contains the event data. Raises the event. A that contains the event data. Raises the event. A that contains the event data. Raises the event. A that contains the event data. Raises the event. An that contains the event data. Triggered when the cell button of the row bar is clicked. The source of the event. The that contains the event data. Triggered when the pop-up container is closed. The source of the event. The that contains the event data. Triggered when sorting is performed in row group bar's cell clicked. The source of the event. The that contains the event data. Performs the sort operations. The column index of the current cell. Index to be moved. The row index of current cell Creates a header bitmap which is used in drag window. Group bar The row index of the current cell. The column index of the current cell. Bitmap. Creates the arrow indicator which used for indicating the dropping location. Bitmap. Triggered when the pivot calculation's collection is changed. The source of the event. The that contains the event data. Wires GroupBar to the Grid. Gets the parent . Implements the data or model part for the total cell in the . See for more detailed information about this cell type. Initializes a new instance of the class with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Provides methods used to render the total cell. Initializes a new instance of the class with the specified and . The instance of the class. The instance of the class. Triggered when the outline of the current cell is rendered. GDI+ surface. Represents the location and size of the rectangle. Triggered when the click is called. Row index. Column index. The that contains the event data. Triggered when the cell background is drawn. The that contains the event data. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Implements the data or model part for the total value cell in the . Initializes a new instance of the class with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Provides methods used to render the total value cell. See for more detailed information about this cell type. Initializes a new instance of the class with the specified and . The instance of class. The instance of class. Triggered when the outline of the cell is rendered. GDI+ surfaces. Represents the rectangle points Triggered when the renderer is clicked. Row index. Column index. The that contains the event data. Triggered when the background of the cell is drawn. The that contains the event data. Triggered when the background of the grid is drawn. GDI+ surfaces. Represents the rectangle points Stores the information about cell. Represents the boolean value. Defines a cell button element that looks like a + and - button for expanding and collapsing nodes in a tree. Initializes a new instance of the class with the specified . The instance of class that draws this cell button element. Draws the cell button element at the specified row and column index. The context of the canvas. The row index. The column index. True if this is the active current cell; False otherwise. The object that holds cell information. Implements the data or model part for the expandable row header cell in the . The expandable row header cell will display '+' symbol for expanded rows and '-' symbol for collapsed rows similar to a TreeView control. See for more detailed information about this cell type. Initializes a new instances of the class with the specified instances of the class. The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Calculates the preferred size of the cell based on its contents without margins and any buttons. The graphics context of the canvas. The row index of the current cell. The column index of the current cell. The that holds the style information of the cell. The graphical bounds. The optimal size of the cell. Implements the renderer part for an expandable row header cell in a . The expandable row header cell will display a '+' for expanded rows and a '-' for collapsed rows similar to a TreeControl. Initializes a new instance of the class with the specified and . The instance of class that displays this cell renderer. The instance of class that holds data for this cell renderer that should be shared among views. References to and will be saved. Raises the event. The instance holds the event data. is called from in order to allow custom formatting of a cell by changing its style object. Set the cancel property true if you want to avoid the associated cell renderer object method to be called. Changes made to the style object will not be saved in the grid nor cached. This event is called every time a portion of the grid is repainted and the specified cell belongs to the invalidated region of the window that needs to be redrawn. Changes to the style object done at this time will also not be reflected when accessing cells though the models indexer. See . Do not change base style or cell type at this time. This method is called from PerformLayout to calculate the client rectangle given the inner rectangle of a cell and any boundaries of cell buttons. The row index. The column index. The object that holds cell information. The with the inner bounds of a cell. An array of with bounds for each cell button element. A with the bounds. Implements the data or model part for the header cell with sort indicator in the . See for more detailed information about this cell type. Initializes a new instance with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instances of the with the specified serialization information and streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Gets the formatted text value. The object that holds the style information of the cell. The value to format. TextInfo is a hint that denotes who is calling, default is GridCellBaseTextInfo.DisplayText. The formatted text of the given value. Creates a renderer for this cell model. The grid control that holds the corresponding cell. The renderer for this cell model. Calculates the preferred size of the cell based on its contents without margins and any buttons. The graphics context of the canvas. The row index of the current cell. The column index of the current cell. The that holds the style information of the cell. The graphical bounds. The optimal size of the cell. Implements the CellRenderer for the PivotRowHeaderCellModel. Initializes a new instance of class with the specified and . The instance of class. The instance of class. Raises the event. The contains the event data. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Overridden to change the cursor for this PivotRowHeaderCell. Row index of the cell. Column index of the cell. Returns the cursor. Overridden to draw the cell text. Graphics associated with this control. Text rectangle of this cell. Row index of this cell in grid. Column index of this cell in grid. Style information associated with this cell. Overridden to invalidate the mouse-down cell-range. Row index of this cell in grid. Column index of this cell in grid. The that contains the event data. Overridden to invalidate the clicked header cell-range. Row index of this cell in grid. Column index of this cell in grid. The that contains the event data. Overridden to suppress the click event. Row index of this cell in grid. Column index of this cell in grid. The that contains the event data. Overridden to draw the button for this cell. Instance of the grid cell button to be drawn. Graphics associated with this control. Row index of this cell in grid. Column index of this cell in grid. Boolean value. Style information of this cell. Overridden to invalidate the cell when mouse hovered over the cell. Row index of this cell in grid. Column index of this cell in grid. The that contains the event data. Overridden to invalidate get the hovered range of cells in grid. Row index of this cell in grid. Column index of this cell in grid. The that contains the event data. Overridden to prepare the layout appearance of the cell. RowIndex of this cell in grid. Column index of this cell in grid. Style information of the cell. Inner text rectangle area. Button bounds for the associated button in control. The inner bounds of the cell. Called when the user clicks on a button inside the cell. Row index of this cell in grid. Column index of this cell in grid. Clicked button. Raises event when the user presses the push button. The row index of the current cell. The column index of the current cell. Overridden to draw the button for this cell. Instance of the grid cell button to be drawn. Graphics associated with this control. Row index of this cell in grid. Column index of this cell in grid. Style information of this cell. Determines whether the header is in the hot state or not. Row index of this cell in grid. Column index of this cell in grid. Style information of this cell. true if the header hot property is applied; otherwise, false. Determines whether the header is in pressed state or not. Row index of this cell in grid. Column index of this cell in grid. Style information of this cell. true if the header is pressed; otherwise, false. Represents a class for declaring the constants of the native-methods. Gets a value indicating whether the running mode of the application is 'Mono' or not. Defines the constants that specifies the animation of the window. Used internally. Represents the class of a pop-up window. Represents the boolean value. Initializes a new instance of the class with the specified instance and size of the control window. The instance of class. The default size value. Pop-up will be disposed immediately after disposing of the content control. Shows the pop-up window below the specified control. The control below which the pop-up will be shown. When there is no space below the specified control, the pop-up control is shown above it. is null. Determines whether to process the resizing messages or not. The message. true if the WndProc method from the base class shouldn't be invoked; otherwise, false. Shows the pop-up window below the specified area. The area of desktop below which the pop-up will be shown. When there is no space below specified area, the pop-up control is shown above it. Shows the pop-up window below the specified area of the specified control. The control used to compute screen location of specified area. The area of control below which the pop-up will be shown. When there is no space below specified area, the pop-up control is shown above it. is null. Paints the sizing grip. The instance containing the event data. Overrides and Processes a dialog box key. One of the values that represents the key to process. IfTruethe key was processed by the control; otherwise, false. Updates the pop-up region. Raises the event. The that contains the event data. Raises the event. The that contains the event data. Raises the event. The that contains the event data. Raises the event. The that contains the event data. Raises the event. The that contains the event data. Overrides and triggered when the closing event is called. event data Overrides and processes the Windows messages. The Windows to process. Sets the control with the Owner. The Control. Determines whether to handle the Native methods or not. The message. Boolean value. Boolean value. Triggered when the control is painted. The source of the event. The that contains the event data. Triggered when the control's region gets changed. The source of the event. The that contains the event data. Triggered when the control is undergone GarbageCollection() The source of the event. The that contains the event data. Required designer variable. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Gets or sets the value of inner userControl of the pop-up. Gets or sets a value indicating whether the content should receive the focus or not after the pop-up has been opened. true if the content should be focused after the pop-up has been opened; otherwise, false. The default value is false. If the FocusOnOpen property is set to false, then pop-up cannot use the fade effect. Gets or sets a value indicating whether pressing the alt key should close the pop-up or not. true if pressing the alt key does not close the pop-up; otherwise, false. The default value is false. Gets or sets a value indicating whether the is re-sizable or not. true if the re-sizing can be done; otherwise, false. The default value is false. Gets or sets a value indicating whether the instance acts like a transparent window or not. true if the pop-up is non-interactive; otherwise, false. The default value is false. If the property is set to 'False', then interaction is made, like clicking. Gets or sets the value of minimum value of the pop-up. An ordered pair of type representing the width and height of a rectangle. Gets or sets the value of maximum value of the pop-up. An ordered pair of type representing the width and height of a rectangle. Gets the value of parameters of a new window. An object of type used when creating a new window. Represents the control class for PivotCalculationFilter. Initializes a new instance of the class. Required designer variable. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Required method for Designer support - do not modify the contents of this method with the code editor. Represents a class that defines the helper methods for the PivotCalculationFilter. Indicates the check box checking. Initializes a new instance of the . class Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Displays the filter drop-down. The parent control of the pop-up. Boolean value to show the pop-up. Location of the pop-up. Sets the checked list items in the drop down filter. Pivot grid control. The row index. The column index. Initializes the PivotCalculationFilter. Initializes the PivotCalculationFilter. Triggered when the click on Search image is clicked. The source of the event. The contains the event data. Triggered when the Context strip is opening. The source of the event. The that contains the event data. Triggered when the text in the search text box gets changed. The source of the event. The that contains the event data. Clears and inserts the select all item to the checked-list item collection. Sorting customization for the elements to be added to the checekedListBox. Triggered when the OK button is Mouse down. The source of the event. The that contains the event data. Triggered while adding the filtered items to the checkedListBox when the filter pop-up is closed unanimously. The source of the event. The that contains the event data. Triggered when the mouse hover is event is done. The source of the event. The that contains the event data. Triggered when the mouse hover leave event is done. The source of the event. The that contains the event data. Triggered when the CANCEL button is clicked. The source of the event. The that contains the event data. Triggered when the search panel is re-sized and to redraw custom border drawn in paint event. The source of the event. The that contains the event data. Triggered when the search panel is painted and draw the custom border color for the search panel. The source of the event. The that contains the event data."/ Sets the localized values for the filter drop-down. Initializes the contextMenu Items and creates the custom renderer for contextMenustrip. Performs filtering based on the checked items in the CheckedListBox. The source of the event. The that contains the event data. Triggered when the OK-button is clicked in the custom dialog window. The source of the event. The that contains the event data. Triggered and gets info regarding the row height of filtered rows for PivotCalculation. The source of the event. The that contains the event data. Triggered when the checked list box items's check state changed. The source of the event. Set the checkbox state to 'select all' option. Implements the render part of the Context menu. Initializes a new instance of the class. Overrides and renders the item text. The that contains the event data. Overrides and renders the Image margin. THe that contains the event data. Overrides and renders the arrow. The that contains the event data. Overrides and sets the separator back-color. The that contains the event data. Overrides and renders the split button. The that contains the event data. Customizes the look and feel of the context menu-stripper. Renderer of the context menu strip to process the resizing of the context menu strip. Windows message. Represents a class that specifies the custom colors to Context menu strippers. Gets the color of the custom MenuItemSelected color for the ContextMenuStrip. Gets the color of the custom MenuItemSelectedGradientBegin color for the ContextMenuStrip. Gets the value of custom MenuItemSelectedGradientEnd color for the ContextMenuStrip. Gets the color of the custom MenuItemBorder color for the ContextMenuStrip. Gets the color of custom MenuBorder color for the ContextMenuStrip. Gets the color of custom CheckBackground color for the ContextMenuStrip. Gets the color of the custom CheckPressedBackground color for the ContextMenuStrip. Gets the color the custom CheckSelectedBackground color for the ContextMenuStrip. Comparer class for arranging the filter items displayed in calculation filter popup. Compare method to sort the values. The first string. The second string. Represents the property information about the grip-bounds. Initializes a new instance of the struct with the specific rectangle value. Client rectangle of the grip-bounds. Gets the value of grip-bounds. Gets the bottom value of the GripBounds. Gets the bottom-right value of the GripBounds. Gets the top value of the GripBounds. Gets the top-right value of the GripBounds. Gets the left value of the GripBounds. Gets the bottom-left value of the GripBounds. Gets the right value of the GripBounds. Gets the top-left value of the GripBounds. Contains methods to drag and drop elements in the . Initializes a new instance of the class. Initializes a new instance of the class with the specified . The that holds drag and drop operation. Handles to drop the item in the FilterCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged. Represents the drag index value. Removes the item from the pivot collections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged. Indicates the dragging index of the grid. Assigns the dictionaries with the pivot items. Populates the dictionaries with the pivot items. Gets the schema sub item for the corresponding point. The location of the item. Handles to drop the item in the PivotRowCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged. Indicates the drag index. Indicates the drop index. Handles to drop the item in the PivotColumnCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged. Indicates the dragging index of the grid. Indicates the dropping index of the grid. Handles to drop the item in the PivotCalculationCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Represents the drag index value. Represents the drop index value. Location of the item where it was dragged. Determines to Interchange the order of items within the same collection. Index where the item was dragged. Index where the item was dropped. Dropped collection. true if the interchange is done properly; otherwise, false. Handles to drop the item in the PivotRowCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Handles to drop the item in the PivotColumnCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. sHolds the values of style properties for the cell/item to be dropped. Handles to drop the item in the PivotCalculationCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Handles to drop the item in the FilterCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Removes the item from the pivot collections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Handles to drop the item in the PivotRowCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged. Handles to drop the item in the PivotColumnCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged. Handles to drop the item in the PivotCalculationCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged. Handles to drop the item in the FilterCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged Removes the item from the pivot collections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections. Holds the values of style properties for the cell/item to be dropped. Location of the item where it was dragged. Navigates the item to up one position using context menu. Holds the values of style properties. The item to be navigated. Navigates the item to down one position using context menu. Holds the values of style properties. The item to be navigated. Navigates the item to top position using context menu. Holds the values of style properties. The item to be navigated. Navigates the item to bottom position using context menu. Holds the values of style properties. The item to be navigated. Removes the item from the collection. Holds the values of style properties. The item to be removed. Refreshes PivotGridControl along with schema designer. Refreshes PivotGridControl along with its sub controls except schema designer. Updates the field list when removing the filtered items. The grid style info. Returns the Groups mean range. Mean range of the group. Returns the column count of grid. Column count. Determines to returns only the essential item which is supposed to be removed in their collection from where it was picked. If the other collections also have an item with same dimension then it will be reset to null. Holds the values of the style properties. Values store in the array. Row pivot item. Column pivot item. Pivot computational info. Filter expression. Integer array. this.GridControl. Returns True. WF-19699 - Removes the row pivot filtering while interchanging the data between pivot rows and pivot calculations. Checks whether the passed key value of PivotRows matches the FieldHeader or FieldMappingName. Key Value to be matched with the FieldMappingName or FieldHeader. true if the pivot rows exists; otherwise, false. Checks whether the passed key value of PivotColumns matches the FieldHeader/FieldMappingName. Key Value to be matched with the FieldMappingName/FieldHeader. true if the specified value is a pivot column; otherwise, false. Checks whether the passed key value of PivotCalculation matches the FieldHeader or FieldMappingName. Key Value to be matched with the FieldMappingName or FieldHeader. true if the calculations exists; otherwise, false. Resets the item collection dictionaries. Represents a list control, which displays a collection of items. Initializes a new instance of the class. Applies the corresponding action triggered by the context menu. Holds the values for style properties. The tag. The action to be performed. Closes the indicator which usually done at mouse up. Opens the created arrow bitmap and initiates the painting in drag operation. The location of the red arrow indicator. Updates the arrow bitmap to the current location of drag window. THe location of the red arrow indicator. Opens the created drag window and initiates the painting in drag operation. Updates the DragWindow to the current mouse position. Closes the drag window which usually done in mouse up event. Gets the location of the drag window. Point. Raises the event. An that contains the event data. Raises the event. A that contains the event data. Raises the event. A that contains the event data. Raises the event. A that contains the event data. Raises the event. A that contains the event data. Raises the event. A that contains the event data. Processes a command key. One of the values. A , passed by reference, that represents the window message to process. Raises the event. A that contains the event data. Gets the selection color based on the themes applied. Creates the arrow indicator which used for indicating the dropping location. Bitmap. Creates a header bitmap for drag window. Column index. The GRidControl. Row index. Bitmap. Updates the items of the context menu items. A shortcut menu. The instance that holds the style property values. Returns the control base for the corresponding tags. The tag to obtain the control. The corresponding control for the specified tag. Triggered when the GridList cell button is clicked. The source of the event. The that contains the event data. Triggered when the shortcut menu item is clicked. The source of the event. The that contains the event data. Gets or sets the selection color. Gets or sets a value indicating whether the has a check box or not for a single cell on each row. true if the check box is set; otherwise, false. The default value is false. Gets or sets a value indicating whether the padded row is set at the top of the grid or not. true if the padded row is set; otherwise, false. The default value is false. Gets the value of the control. Gets the value of either the or property value. based on the value of isFieldsGrid property. The 1-based row index. A string holding either the description or the text of the cell. Provides methods used to render a control with visual styles. Initializes a new instance of the class with the specified . The to obtain the visual style. Raises the event. The that contains the event data. Draws the item background. The that contains the event data. Represents a class that displays the Pivot computational info. Initializes a new instance of the class. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Binds the items with the values. The PivotGrid control. Style object that holds the values of styles properties. Sets the collection for base item combobox. Gets the collection for base item based on the base field. Gets the calculation name. calculation type name calculation name Sets the VisualStyle for the ComputationInfo dialog. Sets the default VisualStyle for the ComputationInfo dialog. Initializes the components. Binds the combo box items. Gets the summary type. summary type summary type Gets the calculation type. calculation type calculation type Triggered when the PivotComputational info form gets loaded. The source of the event. The that contains the event data. Triggered when the text gets changed in the FieldHeader text or Formatted text or Description text. The source of the event. The that contains the event data. Triggered when the combo box selected index gets changed. The source of the event. The that contains the event data. Triggered when the combo box selected value gets changed. The source of the event. The that contains the event data. Triggered when the combo box selected value gets changed. The source of the event. The that contains the event data. Triggered when the OK button is clicked. The source of the event. The that contains the event data. Triggered when the CANCEL button is clicked. The source of the event. The that contains the event data. Gets the scale factor based on current DPI. Represents the method that will handle the event. The source of the event. A that contains the event data. Represents the method that will handle the event. The source of the event. A that contains the event data. Specifies the action performed in the . Indicates that the pivot table field list is getting changed. Indicates that the rows collection is getting changed. Indicates that the column collection is getting changed. Indicates that the value collection is changed. Indicates that the filter collection is getting changed. Represents the pivot schema designer control that enables users to drag and drop pivot fields between rows, columns, values, and filters dynamically at run time. Initializes a new instance of the class. Initializes a new instance of the class with the specified . The instance of the class. Refreshes the pivot schema designer in order to display the updated items. Sets the label width. Sets the color for label,button, check-box and other basic colors according to its respective theme in PivotScheme Designer. Adds the items to schema depending on the check state of the item. The item to be added. Determines whether to remove items from schema or not when unchecked. The item to be removed. true if the item is removed from the schema designer; otherwise, false. Adds item to schema when checking an item in the table field list. The item to be added. Performed when DPI is greater than 100 then the DefaultRowHeight will be set based on the font size. Resets the dictionary items. Boolean value. Raises the event. A that contains event argument. Raises the event. A event argument. Populates the GridColumnGrid with the values. Populates the sub grids with the pivot collection items. Determines whether to remove the item from schema or not when unchecked. Returns True. Determines whether to remove the items from Grid or not when unchecked. The unchecked item. true if the items are removed; Otherwise False. Raises the event. The event argument. Raises the event. The event argument. Releases the managed resources. true, if managed resources should be disposed; otherwise, false. Initializes the component. Triggered when the split container's splitter is moving. The source of the event. A that contains the event data. Triggered when the split container's splitter gets moved. The source of the event. A that contains the event data. Determines whether to resize the schema designer or not. The new size value. Triggered when the table field list's cell click is done. The source of the event. A that contains the event data. Applies the Visual styles to the Scroll. Gets the images for high DPI components. Populates the controls in the schema designer. Populates the controls in the schema designer. Triggered when the Panel2 is resized. The source of the event. A that contains the event data. Triggered and gets the cell information. The source of the event. A that contains the event data. Repopulates the list based on FieldHeader of PivotItem. Modifies the TableFieldList item in consideration with FieldHeader. PivotItem to be added in completeTablelist collection. Assigns the dictionary items. Triggered when the filter's collection gets changed. The source of the event. A that contains the event data. Triggered when the filter items collection gets changed. The Control. The that contains the event data. Gets the back color for the labels. Color. Determines to check for items in the PivotCollections while populating the table field list. The item to be checked. true if the specified item is available; otherwise, false. Adds items to schema when checking an item in the table field list. Adds Fields to row lists. Adds Fields to column lists. Adds the Field name to calculate lists. Adds the Fields to the Filter lists. Triggered when the check state of the ShowCalculationsAsColumnn check-box is changed. The source of the event. A that contains the event data. Triggered when the check state of the LayoutUpdate check-box is changed. The source of the event. A that contains the event data. Triggered and updates the Grid. The source of the event. A that contains the event data. Triggered when the grid column list is changed. The source of the event. A that contains the event data. Triggered when the PivotSchema designer's size gets changed. The source of the event. A that contains the event data. Occurs whenever the schema definitions gets changed in the . This event will be raised when the field list or row, column, value, filter collection gets changed. Occurs whenever the schema definitions begin to change in the . This event will be raised when the field list or row, column, value, filter collection gets changed. Gets or sets the check box control used for enabling and disabling defer layout support. The value of this check box is bound with the property. Gets or sets the check box control used for enabling and disabling show calculations as columns support. The value of this check box is bound with the property. Gets or sets the button control used for updating the based on dynamic operations. Provides data for the event. Initialize a new instance for the class. Initialize a new instance for the class with the specified . The action that is performed on the schema designer. Gets the schema action that is performed on the pivot schema designer. Provides data for the event. Initialize a new instance for the class. Initialize a new instance for the class with the specified . The action that is being performed on the schema designer. Gets the schema action that is performed on the pivot schema designer. Represents a button which is specially designed for the schema cell. Initializes a new instance of the class with the specified . The that holds the schema cell button. Draws the schema cell button with the specified values. Represents GDI+ surface Represents the location and size of the rectangle. Specifies the appearance of the button. Holds the values for customizing the cell style. Represents that whether to set white color or not. Draws the schema cell button with the specified values. Represents GDI+ surface Represents the location and size of the rectangle. Specifies the appearance of the button. Holds the values for customizing the cell style. Provides methods used to render the schema item cell with visual styles. Initializes a new instance of the class with the specified and . The grid control that holds the top left cell. The data or model part of a cell type. Raises the event. A that contains the event data. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Changes the cursor for the schema item cell. The row index of the current cell. The column index of the current cell.. The to be displayed. Raises the event. The row index of the current cell. The column index of the current cell.. A that contains the event data. Raises the event. The row index of the current cell. The column index of the current cell.. A that contains the event data. Draws the cell button element at the specified row and column index. The to be drawn. The context of the canvas. The row index of the current cell. The column index of the current cell.. True, if this is the active current cell; otherwise, false. The object that holds the style information for the cell. Calculates the client rectangle given the inner rectangle of a cell and any boundaries of cell buttons. This method is called from PerformLayout method. The row index of the current cell. The column index of the current cell.. The object that holds the style information for the cell. The that contains the inner bounds of the cell. An array of that contains the bounds for each cell button element. A with the bounds. Draws the text of the header cell after its background has been drawn. This method is called from method. Points to the device context. Specifies the text rectangle. It is the cell rectangle without buttons, borders, or text margins. The row index of the current cell. The column index of the current cell.. The object that holds the style information for the cell. Called when the user clicks on a button inside the cell. The row index of the current cell. The column index of the current cell.. The button that is clicked. Raises event when the user presses the push button. The row index of the current cell. The column index of the current cell. Implements the data or model part for the schema item cell in the . See for more detailed information about this cell type. Initializes a new instance of the class with the specified . The that holds all data information about a grid. You can typically access the cell models through the property of the . Initializes a new instance of the class with the specified serialization information and streaming context. Holds all the data needed to serialize or deserialize this model. Describes the source and destination of the serialized stream specified by the information. Gets the formatted text value. The object that holds the style information of the cell. The value to format. TextInfo is a hint that denotes who is calling, default is GridCellBaseTextInfo.DisplayText. The formatted text of the given value. Creates a new that renders the cell model. The base control that holds the schema item cell renderer. A new schema item cell renderer. Calculates the preferred size of the cell based on its contents without margins and any buttons. The graphics context of the canvas. The row index of the current cell. The column index of the current cell. The that holds the style information of the cell. The graphical bounds. The optimal size of the cell. Specifies the type of the rule used for formatting cell values. Formats every cell based on it's value. Formats the cells that contain a specific value. Formats the cells based on Maximum or Minimum value. Format the cells that are above or below average value. Formats the cells that have unique value. Specifies the type of the format to be applied for grid cells. Formats the cells that have unique value. Formats the cells that have duplicate or repeated values. Specifies the type of the condition based on which the cell value is compared with the average value. Formats the cells that have values above the average value. Formats the cells that have values below the average value. Formats the cells that have value equals or above the average value. Formats the cells that have value equals or below the average value. Specifies the style of the format. Specifies the format style is set of icons. Specifies the category of image icon used for formatting. Specifies the image icon category as three. Specifies the image icon category as four. Specifies the image icon category as five. Specifies the value type, based on which conditional formatting is applied. The conditional formatting is applied based on the value type as percent. The conditional formatting is applied based on the value type as number. Specifies whether the cell value is considered for formatting. The cell value. Specifies the rank type to format values. Specifies the rank type is top. Specifies the rank type is bottom. Specifies the type of the bitmap image used for denoting conditional formats. Specifies that the bitmap image is three colored arrow symbols. Specifies that the bitmap image is three gray colored arrow symbols. Specifies that the bitmap image is three flag symbols. Specifies that the bitmap image is three un-rimmed traffic light signs. Specifies that the bitmap image is three rimmed traffic light signs. Specifies that the bitmap image is three traffic light signs. Specifies that the bitmap image is three symbols. Specifies that the bitmap image is three circled symbols. Specifies that the bitmap image is three un-circled symbols. Specifies that the bitmap image is three star symbols. Specifies that the bitmap image is three triangle symbols. Specifies that the bitmap image is four colored arrow symbols. Specifies that the bitmap image is four gray colored arrow symbols. Specifies that the bitmap image is red to black symbols. Specifies that the bitmap image is four rating symbols. Specifies that the bitmap image is four traffic light signs. Specifies that the bitmap image is five colored arrow symbols. Specifies that the bitmap image is five gray colored arrow symbols. Specifies that the bitmap image is five quarter symbols. Specifies that the bitmap image is five rating symbols. Specifies that the bitmap image is five box symbols. Specifies the type of the predicate used for filtering. Performs an AND operation on filters. Performs an OR operation on filters. Specifies the type of the operation performed on operands. Performs Equals operation on the operands. Performs NotEquals operation on the operands. Performs LessThan operation on the operands. Performs LessThanOrEqual operation on the operands. Performs GreatherThan operation on the operands. Performs GreaterThanOrEqual operation on the operands. Performs Between operation on the operands. Represents a class that contains collection of conditions based on which formatting is applied in the . Gets or sets the conditions. Initializes a new instance of the class. Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Returns a string that represents the current object. A string value that represents the current object. Checks whether the current cell qualifies for conditional formatting or not. An instance of the class that holds the pivot cell information. Gets the measure of the given string. True the format is done; otherwise, false. Gets the complied delegate. An instance of the class that holds the pivot cell information. The associated measure. The complied Delegate. Returns the predicate based on type of condition and expression of the parameter. An instance of the class. Type of the pivot grid data condition. The value for condition. An instance of the class that holds the information regarding the predicate. Gets or sets the instance value that holds the pivot cell information. Gets or sets the style of a pivot cell. Gets or sets the name of the collection. Gets or sets the conditions. Represents a class that contains a condition, based on which formatting is applied in the . Initializes a new instance of the class. Gets or sets the type of the condition. Gets or sets the type of the predicate. Gets or sets the start value. Gets or sets the end value. Gets or sets the Summary element. Represents a class that contains rule for formatting the . Initializes a new instance of the class. Gets or sets the values. Gets or sets the Summary element. This example shows how to use the SummaryElement property. Gets or sets the type of rule. This example shows how to use the RuleType property. Gets or sets the value of format as rank type. This example shows how to use the FormateValuesRankType property. Gets or sets the value of the format as average value type. This example shows how to use the FormateSelectedAverageValueType property. Gets or sets the value of format as all type. This example shows how to use the FormatAllType property. Gets or sets the value of the rank. Gets or sets the value of the format. This example shows how to use the FormatStyle property. Gets or sets the category of image icons. Gets or sets the custom image list. Gets or sets the ValueType1. Gets or sets the ValueType2. Gets or sets the ValueType3. Gets or sets the ValueType4. Gets or sets the Value1. By default values are taken as percent or number and ranked values as top or bottom. Gets or sets the Value2. Gets or sets the Value3. Gets or sets the Value4. Gets or sets the name of the image. The ImageName. Gets or sets the conditions. The conditions. This example shows how to use the Conditions property. Represents a class that contains set of rules for formatting the . Initializes a new instance of the class. Determines whether the style information has been set and should be serialized into code at design-time or not. true, if the style information has been set; otherwise, false. The default value is false. Resets the style information of the property. Returns a string that represents the current object. A string value that represents the current object. Creates a copy of this descriptor. A copy of this descriptor. Initializes this object and copies properties from another object. and events are raised for every property that is modified. If both objects are equal, no events are raised. The source object. Creates an image list based on the category. Image category. Image name. An ImageList. Binds the image from the directory. Number of image. ImageList. Image name. ImageList. Gets the image count. Image name. Image category value. Gets the image name. BitMap Image Name. Image name. Apply the style for current cells that qualifies for conditional formatting. The instance that holds the values of style properties. Row index. Column index. An instance of the class. An instance of the class that holds the pivot cell information. Sets the filtered rank style based on the condition. An instance of the class that holds the pivot cell information. The instance that holds the values of style properties. FormatAllType List. Sets the filtered rank style based on the condition. An instance of the class that holds the pivot cell information. The instance that holds the values of style properties. Formate Selected ValueType The average value. Binds the Ranked list. An instance of the class. An instance of the class. List. Sets the filtered rank style based on the condition. An instance of the class that holds the pivot cell information. The instance that holds the values of style properties. List. Gets the Maximum, Minimum and Average values. The instance that holds the values of style properties. An instance of the class. An instance of the class. ArrayList. Gets the index of the image. The instance that holds the values of style properties. ArrayList. An instance of the class. The image index. Calculates the percentage of the values in PivotGrid. The instance that holds the values of style properties. The ArrayList. Percentile value. Gets the image category. Image list count. Image category count. Gets the associated column name in the . An instance of the class. Column index. The field name, if there is no Pivot calculations; Otherwise the formatted text of the specified cell. Finds the ranked values. An instance of the class. An instance of the class. A List of found ranked values. Gets the predicate status. An instance of the class that holds the pivot cell information. Column index. A boolean value that determines to apply the predicate or not. Gets the complied delegate. An instance of the class that holds the pivot cell information. Column index. The compiled Delegate. Applies style for supplied values of the class. The instance that holds the values of style properties. The instance that holds the values of style properties. Returns the predicate based on type of condition and expression of the parameter. An instance of the class. Type of the pivot grid data condition. The value. An instance of the class, that holds the information regarding the predicate. Gets or sets the instance value that holds the pivot cell information. This example shows how to use the PivotCellInfo property. Gets or sets the style of a pivot cell. This example shows how to use the PivotCellStyle property. Gets or sets a name to the . This example shows how to use the Name property. Gets or sets the collection of . This example shows how to use NewRuleCollections property. Gets or set the painter for the icon. Defines the constants that specifies the direction of the splitter. Represents the direction as Right. Represents the direction as Left. Represents the direction as Up. Represents the direction as Down. Represents the control that is used to split. Initializes a new instance of the class. Overrides and raises the paint event. The that contains the event data. Triggered with the key-press event is done with the splitter. The source of the event. The that contains the event data. Triggered with the key-up event in the splitter. The source of the event. The that contains the event data. Represents the class that contains the information of selected cell. Initializes a new instance of the class. Returns a string representation for the current object. A that represents this instance. Gets the selected column value. The selected column value. Gets the selected row value. The selected row value. Gets the list of selected column values. The selected column values list. Gets the list of selected row values. The selected row values list. Gets the value of selected item. The cell value. Gets the formatted value. The formatted cell value. Represents the IEnumerable collection of . Initializes a new instance of the class. This class is used to serialize some important properties in PivotGrid control. To serialize the properties of PivotGrid control. Deserialize the properties of PivotGrid control. Initializes a new instance of the class. Initializes a new instance of the class. The PivotGrid control. Serializes the SfPivotGrid properties to the given XML string. Serializes the PivotGrid control to the XML document file that are stored in the specified Stream. Specifies the stream used to write the XML document file. Serializes the PivotGrid with to the XML document file that are stored in the specified Stream Specifies stream used to write XML document file. Specifies the to decide the type of operations such as sorting ,filtering and etc to be serialized. Deserializes the SfPivotGrid from the given XML string. /// Contains the XML string content to deserialize. De-serializes the PivotGrid based on the XML document contained by the specified Stream. Specifies the XML document to deserialize. De-serializes the PivotGrid based on the XML document of the specified Stream with . Contains the XML document to deserialize. Decides the type of operations such as sorting, filtering and etc to be de-serialized. Gets the property descriptor of the PivotItems. Name of the field. Property descriptor. To add the filter items into the collection such as tag,FieldCaption and header values. specifies the pivot grid that can be serialized. specifies the filter collection. Gets the PivotGrid control to be serialized. Gets the PivotGrid control to be serialized based on the options. Specifies the to decide the type of operations such as sorting ,filtering and etc to be serialized. Reloads the PivotGrid control. Contains the XML document to deserialize. Reloads the PivotGrid control based on the options. Contains the XML document to deserialize. The list of pivot computations. Clears the fields from current control. Contains the XML document to serialize. List of pivot computations. Reloads the PivotGrid control based on the options. Contains the XML document to deserialize. Specifies the to decide the type of grid operations such as sorting ,filtering ,and etc to be de-serialized. Gets or sets the PivotGrid control. Gets or sets the row based PivotItems.. Gets or sets the column based PivotItems. Gets or sets the PivotCalculations. Gets or sets the filter expressions. Gets or sets the PivotFields. Gets or sets the collection of conditional formats. Gets or sets the filter collection of PivotGrid. Gets or sets the sort collection of PivotGrid. Gets or sets a value that indicates row and column index for hidden fields. Gets or sets a value indicating whether to enable or disable the filter. Gets or sets a value indicating whether to enable or disable the sorting. Gets or sets a value indicating whether to allow cell selection like-in Excel. Gets or sets a value indicating whether to enable or disable editing the cells. Gets or sets a value indicating whether to enable or disable updating the cells. Gets or sets a value indicating whether the row and column headers should freeze or not. Gets or sets a value indicating whether the PivotGrid control is used to analyze data with only rows or with rows and columns. Gets or sets a value indicating whether GroupingBar needs to be visible or not. Gets or sets a value indicating whether to show or hide the visibility of PivotSchemaDesigner. Gets or sets a value indicating whether to show or hide the PivotCalculation values in RowPivotsOnly mode. Gets or sets a value indicating whether the calculations should appear as rows or columns. By default, calculations appear as columns. Gets or sets a value indicating whether sub-total calculations should be shown or hidden. The default value is true. Gets or sets a value indicating whether the grand total calculations should be computed by the Engine. The default value is true. Gets or sets the theme of the control. Represents a class that is used to serialize sorted item. Gets or sets a value indicating whether the sorting order is in ascending or descending. Gets or sets the field name used for mapping. Represents the class to denote the collapsed field being serialized. Gets or sets a value indicating the row index of hidden values. Gets or sets a value indicating the column index of hidden values. Represents the class to denote the filter field being serialized. Initializes a new instance of the class. Gets or sets the name of the filter item that is present in PivotSchemaDesigner. Name and header may be same or different but the value set in the header will get displayed in PivotSchemaDesigner's filter area. Gets or sets the name of the filter item that is present in PivotSchemaDesigner. Name and header may be same or different but the value set in the header will get displayed in PivotSchemaDesigner's filter area. Gets or sets the name of the filter item that is present in PivotSchemaDesigner. Name and caption may be same or different but the value set in the caption will get displayed in PivotSchemaDesigner's filter area. Gets or sets the format of the filter item that is present in PivotSchemaDesigner. Gets or sets the list of filter items. Gets or sets the list of filtered values. Gets or sets a value indicating whether the item is located in filter header area. Represents the class that contains options for controlling the serialization. Initializes a new instance of the class. Gets or sets a value indicating whether the filtered items need to be serialized in PivotGridControl. Gets or sets a value indicating whether the grouping bar needs to be serialized. Gets or sets a value indicating whether the sorted items need to be serialized. Gets or sets a value indicating whether the conditional formats need to be serialized. Gets or sets a value indicating whether the pivot row items need to be serialized. Gets or sets a value indicating whether the pivot column items need to be serialized. Gets or sets a value indicating whether the pivot calculation items need to be serialized. Gets or sets a value indicating whether the expand and collapse state of items need to be serialized. Represents the class that contains options for controlling the deserialization. Initializes a new instance of the class. Gets or sets a value indicating whether the filtered items need to be deserialized. Gets or sets a value indicating whether the grouping bar needs to be deserialized. Gets or sets a value indicating whether the sorted items need to be deserialized. Gets or sets a value indicating whether the conditional formats need to be deserialized. Gets or sets a value indicating whether the pivot row items need to be deserialized. Gets or sets a value indicating whether the pivot column items need to be deserialized. Gets or sets a value indicating whether the pivot calculation items need to be deserialized. Gets or sets a value indicating whether the expand and collapse state of items need to be deserialized. Represents a class that encapsulates the painting logic for a triangle. Initializes a new instance of the class. Paints a triangle to a given graphics canvas provided with 3 different pens with on demand opacity. The context of the canvas. The with the bounds. The which indicates the sort order. Brush to paint the inner region of the triangle. Pen 1 to draw a triangle boundary. Pen 2 to draw a triangle boundary. Pen 3 to draw a triangle boundary. Specifies if the triangle should be drawn transparent. Paints a triangle to a given graphics canvas provided a single pen with on demand opacity. The context of the canvas. The with the bounds. The which indicates the sort order. Brush to paint the inner region of the triangle. Pen to draw a triangle boundary. Specifies if the triangle should be drawn transparent. Paints a triangle to a given graphics canvas. The context of the canvas. The with the bounds. The which indicates the sort order. Brush to paint the inner region of the triangle. Pen to draw a triangle boundary. Gets the triangle points. The direction of the triangle point. The rectangle bounds of the triangle. Point. Sets the Offset points. Triangle point's array collection. Offset of X-axis. Offset of Y-axis. Implements the class for the data or model part of a column header with sort indicator. You typically access cell models through the property of the class. A can serve as model for several instances if there are several views for a . See for more detailed information about this cell type. Initializes a new instance of the class with the specified . The instance of class. You typically access cell models through the property of the class. Initializes a new instance of the class with the specified serialization information and Streaming context. The information required to serialize and deserialize this instance. The source and destination of the serialized stream. Gets the Formatted text value. The object that holds cell information. The value to format. TextInfo is a hint who is calling, default is GridCellBaseTextInfo.DisplayText. The formatted text of the given value. Creates the instance that renders with the specified . The instance of class. The new instance with the specified . Calculates the preferred size of the cell based on its contents without margins and any buttons. The graphics context of the canvas. The row index of the current cell. The column index of the current cell. The that holds the style information of the cell. The graphical bounds. The optimal size of the cell. Implements the class for the renderer part of the sorted column header of the PivotGrid. Initializes a new instance of the class with the specified and . The instance of class. The instance of class. Raises when the event occurs. The that contains the event data. Overrides and triggers to get cursor. The row index of the current cell. The column index of the current cell. Cursor. Overrides and draws the display text. The graphics object. The row index. The column index. Style object that holds the values of style properties. The rectangle bounds of the display text. Overrides and triggers the mouse down event. The row index of the current cell. The column index of the current cell. The that contains the event data. Overrides and triggers the mouse up event. The row index of the current cell. The column index of the current cell. The that contains the event data. Overrides and triggers the click event. The row index of the current cell. The column index of the current cell. The that contains the event data. Overrides and triggers to draw the cell buttons. Used in the cell renderer. GDI+ surfaces. The row index of the current cell. The column index of the current cell. Represents the boolean value. Style object that holds the values of style properties. Draws the contents of the client bounds for the cell, e.g. the text for a static cell. Points to the device context. Specifies the client rectangle without buttons and borders. The row index of the current cell. The column index of the current cell. The object that holds the style information for the cell. Overrides and triggers the mouse hover event. The row index of the current cell. The column index of the current cell. The that contains the event data. Overrides and triggers the Mouse hover leave event. The row index of the current cell. The column index of the current cell. The that contains the event data. Overrides and triggers the OnLayout() method. The row index of the current cell. The column index of the current cell. Style object that holds the values of style properties. Represents the inner bounds of the rectangle. Represents the bounds of the cell button. Inner bounds of the rectangle. Called when the user clicks on a button inside the cell. The row index of the current cell. The column index of the current cell. The button that is clicked. Raises event when the user presses the push button. The row index of the current cell. The column index of the current cell. Determines whether the header is applied with Header hot property or not. The row index of the current cell. The column index of the current cell. Style object that holds the values of style properties. true if the Header hot property is applied;Otherwise false. Determines whether the header is pressed or not. The row index of the current cell. The column index of the current cell. Style object that holds the values of style properties. true if the header is pressed; otherwise, false. Internal only. Represents a class that provides the sort info of PivotGrid. Initializes a new instance of the class. Defines the constants that specifies the direction of a triangle when drawing triangle with . A triangle pointing up. A triangle pointing down. A triangle pointing to the left. A triangle pointing to the right. A strongly-typed resource class, for looking up localized strings, etc. Returns the cached ResourceManager instance used by this class. Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. Provides functionality for drawing and caching bitmaps required for the . Initializes a new instance of the class. Gets the bitmap to indicate asynchronous loading. Gets the bitmap to indicate columns that are moving down. Gets the bitmap to indicate columns that are moving up. Gets the bitmap to indicate columns that are moving left. Gets the bitmap to indicate columns that are moving right. Instance of Determine the resource identifiers class Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values. Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values Used to store the constant string values SR provides localized access to string resources specified in the assembly manifest Syncfusion.Windows.Forms.SR.resources Gets the localized string for the given string. The string that has to be localized. The localized string value. Gets the localized string for the given string. Specified the culture into which the string has to be localized. The string that has to be localized. The localized string value. Get localized version of the object. Name of the localized resource. Localized version of the object. Gets the localized ResourceManager. The assembly of the control. The namespace of the control. Returns the resource manager. Specifies the category in which the property or event will be displayed in a visual designer. This is a localized version of CategoryAttribute. The localized string will be loaded from the assembly manifest Syncfusion.Windows.Forms.SR.resources Initializes a new instance of the class. The string for which the localized string has to be loaded. Specifies a description for a property or event. This is a localized version of DescriptionAttribute. The localized string will be loaded from the assembly manifest Syncfusion.Windows.Forms.SR.resources Initializes a new instance of the class. The string for which the localized string has to be loaded. Gets the string value for the description.