You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OnDoc/ZZ_Signature_C/bin/Debug/Syncfusion.PivotAnalysis.Wi...

11991 lines
716 KiB

<?xml version="1.0"?>
<doc>
<assembly>
<name>Syncfusion.PivotAnalysis.Windows</name>
</assembly>
<members>
<member name="T:Syncfusion.PivotAnalysisWindowsAssembly">
<exclude/>
<summary>
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.
</summary>
</member>
<member name="F:Syncfusion.PivotAnalysisWindowsAssembly.Name">
<summary>
The full name of this assembly without version information: "Syncfusion.Grid.Grouping.Windows"
</summary>
</member>
<member name="F:Syncfusion.PivotAnalysisWindowsAssembly.Assembly">
<summary>
A reference to the <see cref="T:System.Reflection.Assembly"/> for the Grid assembly.
</summary>
</member>
<member name="F:Syncfusion.PivotAnalysisWindowsAssembly.RootNamespace">
<summary>
The root namespace of this assembly. Used internally for locating resources within the assembly.
</summary>
</member>
<member name="M:Syncfusion.PivotAnalysisWindowsAssembly.#cctor">
<summary>
Initializes the <see cref="T:Syncfusion.PivotAnalysisWindowsAssembly"/> class.
</summary>
</member>
<member name="M:Syncfusion.PivotAnalysisWindowsAssembly.AssemblyResolver(System.Object,System.ResolveEventArgs)">
<summary>
This delegate helps with resolving types and can be used as a event handler
for a <see cref="T:System.AppDomain.AssemblyResolve"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The event data with information about the type.</param>
<returns>A reference to the assembly where the type is located.</returns>
<remarks>
Use this handler when reading back types from a serialization stream
saved with an earlier version of this assembly.
</remarks>
<example>
<code lang="C#">
<![CDATA[
public static GridModel LoadSoap(Stream s)
{
try
{
AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(GridBaseAssembly.AssemblyResolver);
SoapFormatter b = new SoapFormatter();
b.AssemblyFormat = FormatterAssemblyStyle.Simple;
GridModel t = b.Deserialize(s) as GridModel;
t.Modified = false;
return t;
}
finally
{
AppDomain.CurrentDomain.AssemblyResolve -= new ResolveEventHandler(GridBaseAssembly.AssemblyResolver);
}
}
]]>
</code>
</example>
</member>
<member name="T:Syncfusion.NamespaceDoc">
<summary>
The Syncfusion namespace contains classes that define value data types, reference data types, events, event handlers, interfaces and attributes.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.RuleType">
<summary>
Specifies the type of the rule used for formatting cell values.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.RuleType.FormatAllCellsBasedOnTheirValues">
<summary>
Formats every cell based on it's value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.RuleType.FormatOnlyCellsThatContain">
<summary>
Formats the cells that contain a specific value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.RuleType.FormatTopOrBottomRankedValues">
<summary>
Formats the cells based on Maximum or Minimum value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.RuleType.FormatOnlyValuesThatAreAboveOrBelowAverage">
<summary>
Format the cells that are above or below average value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.RuleType.FormatOnlyUniqueOrDuplicateValues">
<summary>
Formats the cells that have unique value.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FormatAllType">
<summary>
Specifies the type of the format to be applied for grid cells.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormatAllType.Unique">
<summary>
Formats the cells that have unique value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormatAllType.Duplicate">
<summary>
Formats the cells that have duplicate or repeated values.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FormateSelectedAverageValueType">
<summary>
Specifies the type of the condition based on which the cell value is compared with the average value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormateSelectedAverageValueType.Above">
<summary>
Formats the cells that have values above the average value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormateSelectedAverageValueType.Below">
<summary>
Formats the cells that have values below the average value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormateSelectedAverageValueType.EqualOrAbove">
<summary>
Formats the cells that have value equals or above the average value.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormateSelectedAverageValueType.EqualOrBelow">
<summary>
Formats the cells that have value equals or below the average value.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FormatStyle">
<summary>
Specifies the style of the format.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormatStyle.IconSets">
<summary>
Specifies the format style is set of icons.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.IconImageCategory">
<summary>
Specifies the category of image icon used for formatting.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.IconImageCategory.Three">
<summary>
Specifies the image icon category as three.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.IconImageCategory.Four">
<summary>
Specifies the image icon category as four.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.IconImageCategory.Five">
<summary>
Specifies the image icon category as five.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ValueType">
<summary>
Specifies the value type, based on which conditional formatting is applied.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.ValueType.Percent">
<summary>
The conditional formatting is applied based on the value type as percent.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.ValueType.Number">
<summary>
The conditional formatting is applied based on the value type as number.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FormateValueWithCell">
<exclude/>
<summary>
Specifies whether the cell value is considered for formatting.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormateValueWithCell.CellValue">
<summary>
The cell value.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FormateValuesRankType">
<summary>
Specifies the rank type to format values.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormateValuesRankType.Top">
<summary>
Specifies the rank type is top.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FormateValuesRankType.Bottom">
<summary>
Specifies the rank type is bottom.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName">
<summary>
Specifies the type of the bitmap image used for denoting conditional formats.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeArrowsColored">
<summary>
Specifies that the bitmap image is three colored arrow symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeArrowsGray">
<summary>
Specifies that the bitmap image is three gray colored arrow symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeFlags">
<summary>
Specifies that the bitmap image is three flag symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeTrafficLightsUnrimmed">
<summary>
Specifies that the bitmap image is three un-rimmed traffic light signs.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeTrafficLightsRimmed">
<summary>
Specifies that the bitmap image is three rimmed traffic light signs.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeSigns">
<summary>
Specifies that the bitmap image is three traffic light signs.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeSymbols">
<summary>
Specifies that the bitmap image is three symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeSymbolsCircled">
<summary>
Specifies that the bitmap image is three circled symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeSymbolsUnCircled">
<summary>
Specifies that the bitmap image is three un-circled symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeStars">
<summary>
Specifies that the bitmap image is three star symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.ThreeTriangle">
<summary>
Specifies that the bitmap image is three triangle symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FourArrowsColored">
<summary>
Specifies that the bitmap image is four colored arrow symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FourArrowsGray">
<summary>
Specifies that the bitmap image is four gray colored arrow symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.RedToBlack">
<summary>
Specifies that the bitmap image is red to black symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FourRating">
<summary>
Specifies that the bitmap image is four rating symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FourTrafficLight">
<summary>
Specifies that the bitmap image is four traffic light signs.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FiveArrowsColored">
<summary>
Specifies that the bitmap image is five colored arrow symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FiveArrowsGray">
<summary>
Specifies that the bitmap image is five gray colored arrow symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FiveQuarters">
<summary>
Specifies that the bitmap image is five quarter symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FiveRatings">
<summary>
Specifies that the bitmap image is five rating symbols.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName.FiveBoxes">
<summary>
Specifies that the bitmap image is five box symbols.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PredicateType">
<summary>
Specifies the type of the predicate used for filtering.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PredicateType.And">
<summary>
Performs an AND operation on filters.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PredicateType.Or">
<summary>
Performs an OR operation on filters.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType">
<summary>
Specifies the type of the operation performed on operands.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType.Equals">
<summary>
Performs Equals operation on the operands.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType.NotEquals">
<summary>
Performs NotEquals operation on the operands.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType.LessThan">
<summary>
Performs LessThan operation on the operands.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType.LessThanOrEqual">
<summary>
Performs LessThanOrEqual operation on the operands.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType.GreaterThan">
<summary>
Performs GreatherThan operation on the operands.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType.GreaterThanOrEqual">
<summary>
Performs GreaterThanOrEqual operation on the operands.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType.Between">
<summary>
Performs Between operation on the operands.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat">
<summary>
Represents a class that contains collection of conditions based on which formatting is applied in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.conditions">
<summary>
Gets or sets the conditions.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.PivotCellInfo">
<summary>
Gets or sets the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> instance value that holds the pivot cell information.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.PivotCellStyle">
<summary>
Gets or sets the style of a pivot cell.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.Name">
<summary>
Gets or sets the name of the collection.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.Conditions">
<summary>
Gets or sets the conditions.
</summary>
<example>
<code lang="C#">
<![CDATA[
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
// Setting the condition types and predicate types.
ConditionalFormat form = new ConditionalFormat();
form.ConditionType = PivotGridDataConditionType.Equals;
form.PredicateType = PredicateType.Or;
form.StartValue = 5;
form.EndValue = 555;
// Adding the created conditional format to conditions.
newRule1.Conditions.Add(form);
]]>
</code>
<code lang="VB">
<![CDATA[
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
' Setting the condition types and predicate types.
Dim form As New ConditionalFormat()
form.ConditionType = PivotGridDataConditionType.Equals
form.PredicateType = PredicateType.Or
form.StartValue = 5
form.EndValue = 555
' Adding the created conditional format to conditions.
newRule1.Conditions.Add(form)
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.ToString">
<summary>
Returns a string that represents the current object.
</summary>
<returns>A string value that represents the current object.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.ApplyFormat(Syncfusion.PivotAnalysis.Base.PivotCellInfo,System.String)">
<summary>
Checks whether the current cell qualifies for conditional formatting or not.
</summary>
<param name="cellInfo">An instance of the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> class that holds the pivot cell information.</param>
<param name="associatedMeasure">Gets the measure of the given string.</param>
<returns><b>True</b> the format is done; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.GetCompliedDelegate(Syncfusion.PivotAnalysis.Base.PivotCellInfo,System.String)">
<summary>
Gets the complied delegate.
</summary>
<param name="cellInfo">An instance of the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> class that holds the pivot cell information.</param>
<param name="associatedMeasure">The associated measure.</param>
<returns>The complied Delegate.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConditionalFormat.Predicate(System.Linq.Expressions.ParameterExpression,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType,Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat)">
<summary>
Returns the predicate based on type of condition and expression of the parameter.
</summary>
<param name="paramExp">An instance of the <see cref="T:System.Linq.Expressions.ParameterExpression"/> class.</param>
<param name="pivotGridDataConditionType">Type of the pivot grid data condition.</param>
<param name="Condition">The value for condition.</param>
<returns>An instance of the <see cref="T:System.Linq.Expressions.Expression"/> class that holds the information regarding the predicate.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat">
<summary>
Represents a class that contains a condition, based on which formatting is applied in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat.ConditionType">
<summary>
Gets or sets the type of the condition.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat.PredicateType">
<summary>
Gets or sets the type of the predicate.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat.StartValue">
<summary>
Gets or sets the start value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat.EndValue">
<summary>
Gets or sets the end value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat.SummaryElement">
<summary>
Gets or sets the Summary element.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat">
<summary>
Represents a class that contains rule for formatting the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.Ranges">
<summary>
Gets or sets the <see cref="T:Syncfusion.Windows.Forms.Grid.GridRangeInfo"/> values.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.SummaryElement">
<summary>
Gets or sets the Summary element.
</summary>
<example>This example shows how to use the SummaryElement property.
<code lang="C#">
<![CDATA[
void Form1_Load(object sender, EventArgs e)
{
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
// Formats the pivot cells based on the rank values of the cells.
newRule1.FormateValuesRankType = FormateValuesRankType.Bottom;
// Make sure to set the rule type as the formating type. By default "FormatAllCellsBasedOnTheirValues" is set.
newRule1.RuleType = RuleType.FormatTopOrBottomRankedValues;
// Here "Amount" is the field-mapping name. If the summary element is not set, then formatting is not done.
newRule1.SummaryElement = "Amount";
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
newRuleFormat1.NewRuleCollections.Add(newRule1);
// Formating is done.
newRuleFormat1.PivotCellStyle.BackColor = Color.Red;
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
' Formats the pivot cells based on the rank values of the cells.
newRule1.FormateValuesRankType = FormateValuesRankType.Bottom
' Make sure to set the rule type as the formating type. By default "FormatAllCellsBasedOnTheirValues" is set.
newRule1.RuleType = RuleType.FormatTopOrBottomRankedValues
' Here "Amount" is the field-mapping name. If the summary element is not set, then formatting is not done.
newRule1.SummaryElement = "Amount"
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
newRuleFormat1.NewRuleCollections.Add(newRule1)
' Formating is done.
newRuleFormat1.PivotCellStyle.BackColor = Color.Red
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
End Sub
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.RuleType">
<summary>
Gets or sets the type of rule.
</summary>
<example>This example shows how to use the RuleType property.
<code lang="C#">
<![CDATA[
void Form1_Load(object sender, EventArgs e)
{
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
newRule1.FormateValuesRankType = FormateValuesRankType.Top;
// Make sure to set the format type as the rule type. By default "FormatAllCellsBasedOnTheirValues" is set.
newRule1.RuleType = RuleType.FormatTopOrBottomRankedValues;
// Here "Quantity" is the field-mapping name.
newRule1.SummaryElement = "Quantity";
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
// Formats the pivot cells based on the their values.
newRuleFormat1.PivotCellStyle.TextColor = Color.White;
newRuleFormat1.PivotCellStyle.BackColor = Color.Tomato;
newRuleFormat1.PivotCellStyle.Font.Facename = "Times New Roman";
newRuleFormat1.PivotCellStyle.Font.Bold = true;
newRuleFormat1.NewRuleCollections.Add(newRule1);
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
newRule1.FormateValuesRankType = FormateValuesRankType.Top
' Make sure to set the format type as the rule type. By default "FormatAllCellsBasedOnTheirValues" is set.
newRule1.RuleType = RuleType.FormatTopOrBottomRankedValues
' Here "Quantity" is the field-mapping name.
newRule1.SummaryElement = "Quantity"
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
' Formats the pivot cells based on the their values.
newRuleFormat1.PivotCellStyle.TextColor = Color.White
newRuleFormat1.PivotCellStyle.BackColor = Color.Tomato
newRuleFormat1.PivotCellStyle.Font.Facename = "Times New Roman"
newRuleFormat1.PivotCellStyle.Font.Bold = True
newRuleFormat1.NewRuleCollections.Add(newRule1)
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
End Sub
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.FormateValuesRankType">
<summary>
Gets or sets the value of format as rank type.
</summary>
<example>This example shows how to use the FormateValuesRankType property.
<code lang="C#">
<![CDATA[
void Form1_Load(object sender, EventArgs e)
{
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
// Formats the pivot cells based on the rank values of the cells.
newRule1.FormateValuesRankType = FormateValuesRankType.Bottom;
// Make sure to set the rule type as the formating type. By default "FormatAllCellsBasedOnTheirValues" is set.
newRule1.RuleType = RuleType.FormatTopOrBottomRankedValues;
// Here "Amount" is the field-mapping name.
newRule1.SummaryElement = "Amount";
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
ConditionalFormat form = new ConditionalFormat();
newRuleFormat1.NewRuleCollections.Add(newRule1);
// Formating is done.
newRuleFormat1.PivotCellStyle.BackColor = Color.Red;
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
' Formats the pivot cells based on the rank values of the cells.
newRule1.FormateValuesRankType = FormateValuesRankType.Bottom
' Make sure to set the rule type as the formating type. By default "FormatAllCellsBasedOnTheirValues" is set.
newRule1.RuleType = RuleType.FormatTopOrBottomRankedValues
' Here "Amount" is the field-mapping name.
newRule1.SummaryElement = "Amount"
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
Dim form As New ConditionalFormat()
newRuleFormat1.NewRuleCollections.Add(newRule1)
' Formating is done.
newRuleFormat1.PivotCellStyle.BackColor = Color.Red
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
End Sub
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.FormateSelectedAverageValueType">
<summary>
Gets or sets the value of the format as average value type.
</summary>
<example>This example shows how to use the FormateSelectedAverageValueType property.
<code lang="C#">
<![CDATA[
void Form1_Load(object sender, EventArgs e)
{
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
// Formats the pivot cells based on the average values of the cells.
newRule1.FormateSelectedAverageValueType = FormateSelectedAverageValueType.Below;
// Make sure to set the rule type as the formating type.
newRule1.RuleType = RuleType.FormatOnlyValuesThatAreAboveOrBelowAverage;
// Here "Quantity" is the field-mapping name.
newRule1.SummaryElement = "Quantity";
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
ConditionalFormat form = new ConditionalFormat();
newRuleFormat1.NewRuleCollections.Add(newRule1);
// Formating is done.
newRuleFormat1.PivotCellStyle.BackColor = Color.Red;
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
' Formats the pivot cells based on the average values of the cells.
newRule1.FormateSelectedAverageValueType = FormateSelectedAverageValueType.Below
' Make sure to set the rule type as the formating type.
newRule1.RuleType = RuleType.FormatOnlyValuesThatAreAboveOrBelowAverage
' Here "Quantity" is the field-mapping name.
newRule1.SummaryElement = "Quantity"
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
Dim form As New ConditionalFormat()
newRuleFormat1.NewRuleCollections.Add(newRule1)' Formating is done.
newRuleFormat1.PivotCellStyle.BackColor = Color.Red
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
End Sub
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.FormatAllType">
<summary>
Gets or sets the value of format as all type.
</summary>
<example>This example shows how to use the FormatAllType property.
<code lang="C#">
<![CDATA[
void Form1_Load(object sender, EventArgs e)
{
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
// Sets the rule type. Here "FormatOnlyUniqueOrDuplicateValues" is set.
newRule1.RuleType = RuleType.FormatOnlyUniqueOrDuplicateValues;
// Formats the cells that contains unique or duplicate values. By default "Unique" value is assigned for formatting.
newRule1.FormatAllType = FormatAllType.Duplicate;
newRule1.SummaryElement = "Quantity";
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
ConditionalFormat form = new ConditionalFormat();
newRuleFormat1.NewRuleCollections.Add(newRule1);
newRuleFormat1.PivotCellStyle.BackColor = Color.Red;
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
' Sets the rule type. Here "FormatOnlyUniqueOrDuplicateValues" is set.
newRule1.RuleType = RuleType.FormatOnlyUniqueOrDuplicateValues
' Formats the cells that contains unique or duplicate values. By default "Unique" value is assigned for formatting.
newRule1.FormatAllType = FormatAllType.Duplicate
newRule1.SummaryElement = "Quantity"
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
Dim form As New ConditionalFormat()
newRuleFormat1.NewRuleCollections.Add(newRule1)
newRuleFormat1.PivotCellStyle.BackColor = Color.Red
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
End Sub
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.RankValue">
<summary>
Gets or sets the value of the rank.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.FormatStyle">
<summary>
Gets or sets the value of the format.
</summary>
<example>This example shows how to use the FormatStyle property.
<code lang="C#">
<![CDATA[
void Form1_Load(object sender, EventArgs e)
{
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
// Formats the pivot cells based on the their values.
newRule1.FormatStyle = FormatStyle.IconSets;
// Make sure to set the rule type as the formating type. By default "FormatAllCellsBasedOnTheirValues" is set.
newRule1.RuleType = RuleType.FormatAllCellsBasedOnTheirValues;
// Here "Amount" is the field-mapping name.
newRule1.SummaryElement = "Amount";
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
ConditionalFormat form = new ConditionalFormat();
newRuleFormat1.NewRuleCollections.Add(newRule1);
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
' Formats the pivot cells based on the their values.
newRule1.FormatStyle = FormatStyle.IconSets
' Make sure to set the rule type as the formating type. By default "FormatAllCellsBasedOnTheirValues" is set.
newRule1.RuleType = RuleType.FormatAllCellsBasedOnTheirValues
' Here "Amount" is the field-mapping name.
newRule1.SummaryElement = "Amount"
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
Dim form As New ConditionalFormat()
newRuleFormat1.NewRuleCollections.Add(newRule1)
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
End Sub
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.IconImage">
<summary>
Gets or sets the category of image icons.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.CustomImageList">
<summary>
Gets or sets the custom image list.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.ValueType1">
<summary>
Gets or sets the ValueType1.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.ValueType2">
<summary>
Gets or sets the ValueType2.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.ValueType3">
<summary>
Gets or sets the ValueType3.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.ValueType4">
<summary>
Gets or sets the ValueType4.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.Value1">
<summary>
Gets or sets the Value1.
</summary>
<value>By default values are taken as percent or number and ranked values as top or bottom.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.Value2">
<summary>
Gets or sets the Value2.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.Value3">
<summary>
Gets or sets the Value3.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.Value4">
<summary>
Gets or sets the Value4.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.Image">
<summary>
Gets or sets the name of the image.
</summary>
<value>The ImageName.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat.Conditions">
<summary>
Gets or sets the conditions.
</summary>
<value>The conditions.</value>
<example>This example shows how to use the Conditions property.
<code lang="C#">
<![CDATA[
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
// Setting the condition types and predicate types.
ConditionalFormat form = new ConditionalFormat();
form.ConditionType = PivotGridDataConditionType.Equals;
form.PredicateType = PredicateType.Or;
form.StartValue = 5;
form.EndValue = 555;
// Adding the created conditional format to conditions.
newRule1.Conditions.Add(form);
]]>
</code>
<code lang="VB">
<![CDATA[
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
' Setting the condition types and predicate types.
Dim form As New ConditionalFormat()
form.ConditionType = PivotGridDataConditionType.Equals
form.PredicateType = PredicateType.Or
form.StartValue = 5
form.EndValue = 555
' Adding the created conditional format to conditions.
newRule1.Conditions.Add(form)
]]>
</code>
</example>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat">
<summary>
Represents a class that contains set of rules for formatting the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.PivotCellInfo">
<summary>
Gets or sets the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> instance value that holds the pivot cell information.
</summary>
<example>This example shows how to use the PivotCellInfo property.
<code lang="C#">
<![CDATA[
// Initializing a new rule for formatting.
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
// Adding the newly created rule to the collections.
newRuleFormat1.NewRuleCollections.Add(newRule1);
// Provides the pivot grid's cell information.
newRuleFormat1.PivotCellInfo.CellType = PivotCellType.HeaderCell;
newRuleFormat1.PivotCellInfo.ColumnIndex = 4;
// The new rule gets associated with the pivot grid.
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
]]>
</code>
<code lang="VB">
<![CDATA[
' Initializing a new rule for formatting.
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
' Adding the newly created rule to the collections.
newRuleFormat1.NewRuleCollections.Add(newRule1)
' Provides the pivot grid's cell information.
newRuleFormat1.PivotCellInfo.CellType = PivotCellType.HeaderCell
newRuleFormat1.PivotCellInfo.ColumnIndex = 4
' The new rule gets associated with the pivot grid.
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.PivotCellStyle">
<summary>
Gets or sets the style of a pivot cell.
</summary>
<example>This example shows how to use the PivotCellStyle property.
<code lang="C#">
<![CDATA[
void Form1_Load(object sender, EventArgs e)
{
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
newRule1.RuleType = RuleType.FormatOnlyUniqueOrDuplicateValues;
newRule1.FormatAllType = FormatAllType.Duplicate;
newRule1.SummaryElement = "Quantity";
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
ConditionalFormat form = new ConditionalFormat();
newRuleFormat1.NewRuleCollections.Add(newRule1);
// Formats the pivot cells that satisfies the RuleType and Formats the cells which have repeated values.
newRuleFormat1.PivotCellStyle.BackColor = Color.Red;
newRuleFormat1.PivotCellStyle.TextColor = Color.White;
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
newRule1.RuleType = RuleType.FormatOnlyUniqueOrDuplicateValues
newRule1.FormatAllType = FormatAllType.Duplicate
newRule1.SummaryElement = "Quantity"
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
Dim form As New ConditionalFormat()
newRuleFormat1.NewRuleCollections.Add(newRule1)
' Formats the pivot cells that satisfies the RuleType and Formats the cells which have repeated values.
newRuleFormat1.PivotCellStyle.BackColor = Color.Red
newRuleFormat1.PivotCellStyle.TextColor = Color.White
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
End Sub
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.Name">
<summary>
Gets or sets a name to the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat"/>.
</summary>
<example>This example shows how to use the Name property.
<code lang="C#">
<![CDATA[
// Initializing a conditional formatting item.
PivotGridConditionalFormat item = new PivotGridConditionalFormat();
// Assigns the name to the Conditional format being applied.
item.Name = "myCondition";
// Assigning the condition format to the pivot grid.
this.pivotGridControl1.TableControl.ConditionalFormats.Add(item);
]]>
</code>
<code lang="VB">
<![CDATA[
' Initializing a conditional formatting item.
Dim item As New PivotGridConditionalFormat()
' Assigns the name to the Conditional format being applied.
item.Name = "myCondition"
' Assigning the condition format to the pivot grid.
Me.pivotGridControl1.TableControl.ConditionalFormats.Add(item)
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.NewRuleCollections">
<summary>
Gets or sets the collection of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat"/>.
</summary>
<example>This example shows how to use NewRuleCollections property.
<code lang="C#">
<![CDATA[
// Initializing a new rule for formatting.
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
// Adding the newly created rule to the collections.
newRuleFormat1.NewRuleCollections.Add(newRule1);
// The new rule gets associated with the pivot grid.
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
]]>
</code>
<code lang="VB">
<![CDATA[
' Initializing a new rule for formatting.
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
' Adding the newly created rule to the collections.
newRuleFormat1.NewRuleCollections.Add(newRule1)
' The new rule gets associated with the pivot grid.
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.IconPainter">
<summary>
Gets or set the painter for the icon.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.ShouldSerializeStyle">
<summary>
Determines whether the style information has been set and should be serialized into code at design-time or not.
</summary>
<returns><b>true</b>, if the style information has been set; otherwise, <b>false</b>. The default value is <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.ResetStyle">
<summary>
Resets the style information of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.PivotCellStyle"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.ToString">
<summary>
Returns a string that represents the current object.
</summary>
<returns>A string value that represents the current object.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.Clone">
<summary>
Creates a copy of this descriptor.
</summary>
<returns>A copy of this descriptor.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.InitializeFrom(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat)">
<summary>
Initializes this object and copies properties from another object. <see cref="T:System.ComponentModel.INotifyPropertyChanging"/>
and <see cref="T:System.ComponentModel.INotifyPropertyChanged"/> events are raised for every property that is modified. If both
objects are equal, no events are raised.
</summary>
<param name="other">The source object.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.CreateImageList(System.Object,System.String)">
<summary>
Creates an image list based on the category.
</summary>
<param name="IconImageCategory">Image category.</param>
<param name="ImageName">Image name.</param>
<returns>An ImageList.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.InitImageListFromDirectory(System.Int32,System.Windows.Forms.ImageList,System.String)">
<summary>
Binds the image from the directory.
</summary>
<param name="num">Number of image.</param>
<param name="ImageList">ImageList.</param>
<param name="ImageName">Image name.</param>
<returns>ImageList.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.GetImageCount(System.String)">
<summary>
Gets the image count.
</summary>
<param name="imageName"> Image name.</param>
<returns>Image category value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.GetImageName(Syncfusion.Windows.Forms.PivotAnalysis.BitMapImageName)">
<summary>
Gets the image name.
</summary>
<param name="imageName">BitMap Image Name.</param>
<returns>Image name.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.ApplyStyle(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Int32,System.Int32,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase,Syncfusion.PivotAnalysis.Base.PivotCellInfo)">
<summary>
Apply the style for current cells that qualifies for conditional formatting.
</summary>
<param name="gridStyleInfo">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
<param name="row">Row index.</param>
<param name="col">Column index.</param>
<param name="pivotGrid">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class.</param>
<param name="pivotCellInfo">An instance of the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> class that holds the pivot cell information.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.SetFilteredRankStyle(Syncfusion.PivotAnalysis.Base.PivotCellInfo,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.PivotAnalysis.FormatAllType,System.Collections.Generic.List{System.Double})">
<summary>
Sets the filtered rank style based on the condition.
</summary>
<param name="pivotCellInfo">An instance of the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> class that holds the pivot cell information.</param>
<param name="gridStyleInfo">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
<param name="FormatAllType">FormatAllType</param>
<param name="RankedValues">List.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.SetFilteredRankStyle(Syncfusion.PivotAnalysis.Base.PivotCellInfo,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.PivotAnalysis.FormateSelectedAverageValueType,System.Double)">
<summary>
Sets the filtered rank style based on the condition.
</summary>
<param name="pivotCellInfo">An instance of the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> class that holds the pivot cell information.</param>
<param name="gridStyleInfo">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
<param name="FormateSelectedAverageValueType">Formate Selected ValueType</param>
<param name="avgValue">The average value.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.BindRankedList(Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Binds the Ranked list.
</summary>
<param name="rule">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat"/> class.</param>
<param name="pivotGrid">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class.</param>
<returns>List.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.SetFilteredRankStyle(Syncfusion.PivotAnalysis.Base.PivotCellInfo,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Collections.Generic.List{System.Double})">
<summary>
Sets the filtered rank style based on the condition.
</summary>
<param name="pivotCellInfo">An instance of the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> class that holds the pivot cell information.</param>
<param name="gridStyleInfo">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
<param name="FilteredRankedValues">List.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.GetMaxAndMinVale(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase,Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat)">
<summary>
Gets the Maximum, Minimum and Average values.
</summary>
<param name="gridStyleInfo">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
<param name="pivotGrid">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class.</param>
<param name="rule">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat"/> class.</param>
<returns>ArrayList.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.GetImageIndex(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Collections.ArrayList,Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat)">
<summary>
Gets the index of the image.
</summary>
<param name="gridStyleInfo">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
<param name="maxValues">ArrayList.</param>
<param name="newRule">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat"/> class.</param>
<returns>The image index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.FindPercentage(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Collections.ArrayList)">
<summary>
Calculates the percentage of the values in PivotGrid.
</summary>
<param name="gridStyleInfo">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
<param name="maxValues">The ArrayList.</param>
<returns>Percentile value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.imageCount(System.Int32)">
<summary>
Gets the image category.
</summary>
<param name="count">Image list count.</param>
<returns>Image category count.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.GetAssociatedMeasure(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase,System.Int32)">
<summary>
Gets the associated column name in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<param name="pivotGrid">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class.</param>
<param name="columnIndex">Column index.</param>
<returns>The field name, if there is no Pivot calculations; Otherwise the formatted text of the specified cell.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.FindRankValues(Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Finds the ranked values.
</summary>
<param name="conditionalFormat">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.NewRuleConditionalFormat"/> class.</param>
<param name="pivotGrid">An instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class.</param>
<returns>A List of found ranked values.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.GetPredicate(Syncfusion.PivotAnalysis.Base.PivotCellInfo,System.Int32)">
<summary>
Gets the predicate status.
</summary>
<param name="pivotCellInfo">An instance of the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> class that holds the pivot cell information.</param>
<param name="colIndex">Column index.</param>
<returns>A boolean value that determines to apply the predicate or not.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.GetCompiledDelegate(Syncfusion.PivotAnalysis.Base.PivotCellInfo,System.Int32)">
<summary>
Gets the complied delegate.
</summary>
<param name="pivotCellInfo">An instance of the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/> class that holds the pivot cell information.</param>
<param name="colIndex">Column index.</param>
<returns>The compiled Delegate.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.ApplyStyle(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Applies style for supplied values of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> class.
</summary>
<param name="styleInfo">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
<param name="cellStyle">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the values of style properties.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat.Predicate(System.Linq.Expressions.ParameterExpression,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridDataConditionType,Syncfusion.Windows.Forms.PivotAnalysis.ConditionalFormat)">
<summary>
Returns the predicate based on type of condition and expression of the parameter.
</summary>
<param name="paramExp">An instance of the <see cref="T:System.Linq.Expressions.ParameterExpression"/> class.</param>
<param name="pivotGridDataConditionType">Type of the pivot grid data condition.</param>
<param name="Condition">The value.</param>
<returns>An instance of the <see cref="T:System.Linq.Expressions.Expression"/> class, that holds the information regarding the predicate.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase">
<summary>
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.
</summary>
<remarks>
To use this control, you must assign some IList object to the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ItemSource"/> 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
<see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotRows"/>, <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotColumns"/> and <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotCalculations"/> properties.
</remarks>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotFilters">
<summary>
Gets or sets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.FilterExpression"/>.
</summary>
_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
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.allowedFields">
<summary>
FieldInfo collection for default fields.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.pivotRows">
<summary>
PivotItem collection for PivotRows.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.pivotColumns">
<summary>
PivotItem collection for PivotColumns.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.pivotCalculations">
<summary>
PivotCalculation collection.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.pivotFields">
<summary>
PivotItem collection for PivotFields.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="model">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ItemSourceChanged">
<summary>
Occurs when the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ItemSource"/> property value gets changed.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SelectionChanged">
<summary>
Occurs when the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItems"/> instance value gets changed.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Expanding">
<summary>
Used to handle the Expanding event
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Expanded">
<summary>
Used to handle the Expanded event
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Collapsing">
<summary>
Used to handle the Collapsing event
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Collapsed">
<summary>
Used to handle the Collapsed event
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.HyperlinkCellClick">
<summary>
Used to handle the HyperlinkCellClick event
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.DataRefreshing">
<summary>
Used to handle the DataRefreshing event
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.DataRefreshed">
<summary>
Used to handle the DataRefreshed event
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ShowDisabledGroupBackgroundPropertyChanged">
<summary>
Used to handle the event that has no event data.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.MetroStyle">
<summary>
Gets or sets the value of metro style.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CustomizeSystemTheme">
<summary>
Gets or sets a value indicating whether the system theme should be customized or not.
</summary>
<value><b>true</b>if the system theme is customized; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ItemSource">
<summary>
Gets or sets source of data for this pivot table. This object should be either
an IEnumerable list, or a DataTable.
</summary>
<example>This example shows how to use the ItemSource property.
<code lang="C#">
<![CDATA[
// Adding ItemSource to the pivot grid. Here "ProdutSales" is the datasource assigned to the grid.
this.pivotGridControl1.ItemSource = ProductSales.GetSalesData();
]]>
</code>
<code lang="VB">
<![CDATA[
' Adding ItemSource to the pivot grid. Here "ProdutSales" is the datasource assigned to the grid.
Me.pivotGridControl1.ItemSource = ProductSales.GetSalesData()
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GridVisualStylesDrawing">
<summary>
Gets or sets the VisualStylesDrawing object.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GridVisualStyles">
<summary>
Gets or sets the VisualStyles (skins) like Office2010, Office2007, Office2003.
</summary>
<example>This example shows how to use the GridVisualStyles property.
<code lang="C#">
<![CDATA[
// Sets the Visual style for the pivot grid. Here "Metro" theme is set.
this.pivotGridControl1.GridVisualStyles = Syncfusion.Windows.Forms.GridVisualStyles.Metro;
]]>
</code>
<code lang="VB">
<![CDATA[
' Sets the Visual style for the pivot grid. Here "Metro" theme is set.
Me.pivotGridControl1.GridVisualStyles = Syncfusion.Windows.Forms.GridVisualStyles.Metro
]]>
</code>
</example>
</member>
<!-- Badly formed XML comment ignored for member "P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ConditionalFormats" -->
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.NewRuleConditionalFormat">
<summary>
Gets or sets the collection of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridNewRuleConditionalFormat"/>.
</summary>
<example>This example shows how to use the NewRuleConditionalFormat property.
<code lang="C#">
<![CDATA[
void TableControl_CellClick(object sender, Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs e)
{
// Initializing a new rule.
NewRuleConditionalFormat newRule1 = new NewRuleConditionalFormat();
// Setting the condition types and predicate types.
ConditionalFormat form = new ConditionalFormat();
form.ConditionType = PivotGridDataConditionType.Equals;
form.PredicateType = PredicateType.Or;
form.StartValue = 5;
form.EndValue = 555;
newRule1.Conditions.Add(form);
// Formatting is done if the condition gets satisfied.
PivotGridNewRuleConditionalFormat newRuleFormat1 = new PivotGridNewRuleConditionalFormat();
newRuleFormat1.NewRuleCollections.Add(newRule1);
// Sample condition.
if (form.StartValue < e.RowIndex)
{
this.pivotGridControl1.TableModel[e.RowIndex, e.ColIndex].TextColor = Color.Red;
}
// The new rule gets associated with the pivot grid.
this.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub TableControl_CellClick(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)
' Initializing a new rule.
Dim newRule1 As New NewRuleConditionalFormat()
' Setting the condition types and predicate types.
Dim form As New ConditionalFormat()
form.ConditionType = PivotGridDataConditionType.Equals
form.PredicateType = PredicateType.Or
form.StartValue = 5
form.EndValue = 555
newRule1.Conditions.Add(form)
' Formatting is done if the condition gets satisfied.
Dim newRuleFormat1 As New PivotGridNewRuleConditionalFormat()
newRuleFormat1.NewRuleCollections.Add(newRule1)
' Sample condition.
If form.StartValue<e.RowIndex Then
Me.pivotGridControl1.TableModel(e.RowIndex, e.ColIndex).TextColor = Color.Red
End If
' The new rule gets associated with the pivot grid.
Me.pivotGridControl1.TableControl.NewRuleConditionalFormat.Add(newRuleFormat1)
End Sub
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotRows">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.PivotItem"/>.
</summary>
<example>This example shows how to use the PivotRows property.
<code lang="C#">
<![CDATA[
// Adding PivotRows to the pivot grid. Here "Product" is the field's mapping name and "Total" is the header.
this.pivotGridControl1.PivotRows.Add(new PivotItem { FieldMappingName = "Product", TotalHeader = "Total" });
]]>
</code>
<code lang="VB">
<![CDATA[
' Adding PivotRows to the pivot grid. Here "Product" is the field's mapping name and "Total" is the header.
Me.pivotGridControl1.PivotRows.Add(New PivotItem With {.FieldMappingName = "Product", .TotalHeader = "Total"})
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotColumns">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.PivotItem"/>.
</summary>
<example>This example shows how to use the PivotColumns property. Here "Country" is the field's mapping name and "Total" is the header.
<code lang="C#">
<![CDATA[
// Adding PivotColumns to the pivot grid.
this.pivotGridControl1.PivotColumns.Add(new PivotItem { FieldMappingName = "Country", TotalHeader = "Total" });
]]>
</code>
<code lang="VB">
<![CDATA[
' Adding PivotColumns to the pivot grid. Here "Country" is the field's mapping name and "Total" is the header.
Me.pivotGridControl1.PivotColumns.Add(New PivotItem With {.FieldMappingName = "Country", .TotalHeader = "Total"})
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Filters">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.FilterExpression"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotCalculations">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.PivotComputationInfo"/>.
</summary>
<example>This example shows how to use the PivotCalculations property.
<code lang="C#">
<![CDATA[
// Adding PivotCalculations to the pivot grid.
this.pivotGridControl1.PivotCalculations.Add(new PivotComputationInfo { FieldName = "Amount", Format = "#,##0", SummaryType = SummaryType.DoubleTotalSum});
]]>
</code>
<code lang="VB">
<![CDATA[
' Adding PivotCalculations to the pivot grid.
Me.pivotGridControl1.PivotCalculations.Add(New PivotComputationInfo With {.FieldName = "Amount", .Format = "#,##0", .SummaryType = SummaryType.DoubleTotalSum})
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotFields">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.PivotItem"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.IsDynamicData">
<summary>
Gets or sets a value indicating whether the supplied data is dynamic or not.
</summary>
<value><b>true</b> if dynamic data is set; otherwise, <b>false</b>. The default value is<b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ShowSubTotals">
<summary>
Gets or sets a value indicating whether the subtotal values should be shown or not.
</summary>
<value><b>true</b>the subtotal values is shown; otherwise, <b>false</b>. The default value is <b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.AllowFiltering">
<summary>
Gets or sets a value indicating whether to enable or disable the filtering.
</summary>
<value><b>true</b> if the filtering is enabled; otherwise, <b>false</b>. The default value is<b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.AllowSorting">
<summary>
Gets or sets a value indicating whether to enable or disable the sorting.
</summary>
<value><b>true</b> if the sorting is enabled; otherwise, <b>false</b>. The default value is<b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ShowGroupBar">
<summary>
Gets or sets a value indicating whether to enable or disable the grouping bar.
</summary>
<value><b>true</b> if the grouping bar is enabled; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ShowCalculationsAsColumns">
<summary>
Gets or sets a value indicating whether the calculations should be appeared as columns or not.
</summary>
<value><b>true</b> if the calculations are shown as columns; otherwise, <b>false</b>. The default value is<b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotEngine">
<summary>
Gets or sets the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotEngine"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.AllowedFields">
<summary>
Gets a collection of <see cref="T:Syncfusion.PivotAnalysis.Base.FieldInfo"/> instances that
hold field names which are visible in the engine.
</summary>
<remarks>
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.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.IsExternalEngine">
<summary>
Gets or sets a value indicating whether the engine of this control is internally created or supplied from external source.
</summary>
<value><b>true</b> if the external engine is set; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.FreezeHeaders">
<summary>
Gets or sets a value indicating whether the column and row headers should be frozen or not.
</summary>
<value><b>true</b> if the headers are frozen; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.DeferLayoutUpdate">
<summary>
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.
</summary>
<value><b>true</b> if the layout waits for the Refresh() call; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ShowGrandTotals">
<summary>
Gets or sets a value indicating whether the grand total calculations should be computed by the engine or not.
</summary>
<value><b>true</b> if the calculations are computed by the engine; otherwise, <b>false</b>. The default value is <b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.AllowSelection">
<summary>
Gets or sets a value indicating whether to allow selection of cells as in Excel or not.
</summary>
<value><b>true</b> if the selection is enabled; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.AllowRowPivotFiltering">
<summary>
Gets or sets a value indicating whether the filtering option is enabled for RowPivotsOnly mode.
</summary>
<value><b>true</b> if the filtering is enabled; otherwise, <b>false</b>. The default value is <b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GroupDropArea">
<summary>
Gets or sets the value of GroupBar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RowGroupDropArea">
<summary>
Gets or sets the value of Row GroupBar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.FilterArea">
<summary>
Gets or sets the FilterBar for FilterArea.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GridColumnList">
<summary>
Gets or sets the value of grid column list.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GridRowList">
<summary>
Gets or sets the value of grid row list.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GridFilterList">
<summary>
Gets or sets the value of filter list.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GridValueList">
<summary>
Gets or sets the value of GridValueList.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotTableFieldList">
<summary>
Gets or sets the value of field list in the pivot table.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SelectedItems">
<summary>
Gets or sets the selected items.
</summary>
<value>The selected items.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.HiddenRowGroups">
<summary>
Gets or sets the hidden row groups.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.HiddenColumnGroups">
<summary>
Gets or sets the hidden column groups.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.HiddenSubTotalsRowGroups">
<summary>
Gets or sets the hidden sub-total row groups.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.HiddenSubTotalsColumnGroups">
<summary>
Gets or sets the hidden sub-total column groups.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.EnableAsyncLoading">
<summary>
Gets or sets a value indicating whether the PivotGrid control needs to be updated asynchronously on the background while PivotGrid operations are done.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.BusyAnimationIcon">
<summary>
Gets or sets the icon that needs to be displayed while Asynchronous loading takes place.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.InAsyncMode">
<summary>
Denotes whether PivotGridControl is in Async mode.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.UpdateGridLayout">
<summary>
Gets or sets a value indicating whether to update the grid layout or not.
</summary>
<value>If<b>True</b>updates the Grid layout;Otherwise<b>False</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.IgnoreRefresh">
<summary>
Gets or sets a value indicating whether to ignore refreshing or not.
</summary>
<value>If<b>True</b>ignores the refresh;Otherwise;<b>False</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotGridControl">
<summary>
Gets or sets the PivotGrid control.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RowPivotsOnly">
<summary>
Gets or sets a value indicating whether the PivotGridControl is used to analyze data only with rows, or with both rows and columns.
</summary>
<value>If<b>True</b>Sets only the rows;Otherwise<b>False</b>and sets both rows and columns.The default value is<b>False</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.EnableValueEditing">
<summary>
Gets or sets a value indicating whether to enable or disable editing the cells.
</summary>
<value>If<b>True</b>Enables the editing;Otherwise<b>False</b>. The default value is<b>False</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.EditManager">
<summary>
Gets or sets the PivotEditingManager reference to PivotGridControl.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.EnableUpdating">
<summary>
Gets or sets a value indicating whether to enable or disable updating the cells.
</summary>
<value>If<b>True</b>Enables updating;Otherwise<b>False</b>. The default value is <b>False</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.UpdateManager">
<summary>
Gets or sets the PivotUpdatingManager reference to PivotGridControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GroupBarSize">
<summary>
Calculates the group bar size.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Refresh(System.Boolean)">
<summary>
Refreshes the layout of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.
</summary>
<param name="shouldPopulateEngine">It will repopulate the PivotEngine if True.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PopulateDefaultPropertyFields">
<summary>
Populates the default property fields.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ResetPivotData">
<summary>
Resets the pivot data (resets the pivot engine, pivot rows, pivot columns, pivot fields, pivot calculations and items source).
</summary>
<example>This example shows how to reset the data displayed in the pivot grid table.
<code lang="C#">
<![CDATA[
' Resets the data displayed in the pivot grid.
Me.pivotGridControl1.TableControl.ResetPivotData()
]]>
</code>
<code lang="VB">
<![CDATA[
' Resets the data displayed in the pivot grid.
Me.pivotGridControl1.TableControl.ResetPivotData()
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ExpandAllRowGroups">
<summary>
Expands all the grouped rows.
</summary>
<example>This example shows how to expand all the row groups.
<code lang="C#">
<![CDATA[
// Expands all the row groups.
this.pivotGridControl1.TableControl.ExpandAllRowGroups();
]]>
</code>
<code lang="VB">
<![CDATA[
' Expands all the row groups.
Me.pivotGridControl1.TableControl.ExpandAllRowGroups()
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ExpandAllColumnGroups">
<summary>
Expands all the grouped columns.
</summary>
<example>This example shows how to expand all the column groups.
<code lang="C#">
<![CDATA[
// Expands all the columns groups.
this.pivotGridControl1.TableControl.ExpandAllColumnGroups();
]]>
</code>
<code lang="VB">
<![CDATA[
' Expands all the columns groups.
Me.pivotGridControl1.TableControl.ExpandAllColumnGroups()
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ExpandAllGroups">
<summary>
Expands all the groups.
</summary>
<example>This example shows how to expand all groups.
<code lang="C#">
<![CDATA[
// Expands all the groups either it may be column or row.
this.pivotGridControl1.TableControl.ExpandAllGroups();
]]>
</code>
<code lang="VB">
<![CDATA[
' Expands all the groups either it may be column or row.
Me.pivotGridControl1.TableControl.ExpandAllGroups()
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CollapseAllRowGroups">
<summary>
Collapses all the grouped rows.
</summary>
<example>This example shows how to collapse all the row groups.
<code lang="C#">
<![CDATA[
// Collapse all the row groups.
this.pivotGridControl1.TableControl.CollapseAllRowGroups();
]]>
</code>
<code lang="VB">
<![CDATA[
' Collapse all the row groups.
Me.pivotGridControl1.TableControl.CollapseAllRowGroups()
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CollapseAllColumnGroups">
<summary>
Collapses all the grouped columns.
</summary>
<example>This example shows how to collapse all column groups.
<code lang="C#">
<![CDATA[
// Collapse all the column groups.
this.pivotGridControl1.TableControl.CollapseAllColumnGroups();
]]>
</code>
<code lang="VB">
<![CDATA[
' Collapse all the column groups.
Me.pivotGridControl1.TableControl.CollapseAllColumnGroups()
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CollapseAllGroups">
<summary>
Collapses all the groups.
</summary>
<example>This example shows how to collapse all the groups.
<code lang="C#">
<![CDATA[
// Collapse all the groups either it may be row group or column group.
this.pivotGridControl1.TableControl.CollapseAllGroups();
]]>
</code>
<code lang="VB">
<![CDATA[
' Collapse all the groups either it may be row group or column group.
Me.pivotGridControl1.TableControl.CollapseAllGroups()
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ExpandRow(System.String)">
<summary>
Expands the row for the specified unique text.
</summary>
<param name="uniqueText">An unique way of representation for the header cell which has a parent cell <see cref="P:Syncfusion.PivotAnalysis.Base.PivotCellInfo.UniqueText"/>.</param>
<example>This example shows how to expand a specific row.
<code lang="C#">
<![CDATA[
// Expand the specific row. Here "Total" is a mapping name.
this.pivotGridControl1.TableControl.ExpandRow("Total");
]]>
</code>
<code lang="VB">
<![CDATA[
' Expand the specific row. Here "Total" is a mapping name.
Me.pivotGridControl1.TableControl.ExpandRow("Total")
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ExpandRow(System.Collections.Generic.List{System.String})">
<summary>
Expand the rows for provided array of unique text.
</summary>
<param name="list">Array of Unique text of the Expander headers.</param>
<example>This example shows how to expand a list of rows.
<code lang="C#">
<![CDATA[
// Expands all the rows. Here "Total", "StateId", "Amount" are all mapping names.
List<string> myExpandingRows = new List<string>();
myExpandingRows.Add("Total");
myExpandingRows.Add("StateId");
myExpandingRows.Add("Amount");
this.pivotGridControl1.TableControl.ExpandRow(myExpandingRows);
]]>
</code>
<code lang="VB">
<![CDATA[
' Expands all the rows. Here "Total", "StateId", "Amount" are all mapping names.
Dim myExpandingRows As New List(Of String)()
myExpandingRows.Add("Total")
myExpandingRows.Add("StateId")
myExpandingRows.Add("Amount")
Me.pivotGridControl1.TableControl.ExpandRow(myExpandingRows)
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CollapseRow(System.String)">
<summary>
Collapses the row for the specified unique text.
</summary>
<param name="uniqueText">An unique way of representation for the header cell which has a parent cell <see cref="P:Syncfusion.PivotAnalysis.Base.PivotCellInfo.UniqueText"/>.</param>
<example>This example shows how to collapse the specific row.
<code lang="C#">
<![CDATA[
// Collapse the specified row. Here "Amount" is a mapping name.
this.pivotGridControl1.TableControl.CollapseRow("Amount");
]]>
</code>
<code lang="VB">
<![CDATA[
' Collapse the specified row. Here "Amount" is a mapping name.
Me.pivotGridControl1.TableControl.CollapseRow("Amount")
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CollapseRow(System.Collections.Generic.List{System.String})">
<summary>
Collapse the rows for the specified unique text.
</summary>
<param name="list">Array of Unique text of the Expander headers.</param>
<example>This example shows how to collapse a list of rows.
<code lang="C#">
<![CDATA[
// Collapses a list of rows. Here "Total", "StateId", "Amount" are all mapping names.
List<string> rowColapsed = new List<string>();
rowColapsed.Add("Total");
rowColapsed.Add("StateId");
rowColapsed.Add("Amount");
this.pivotGridControl1.TableControl.CollapseRow(rowColapsed);
]]>
</code>
<code lang="VB">
<![CDATA[
' Collapses a list of rows. Here "Total", "StateId", "Amount" are all mapping names.
Dim rowColapsed As New List(Of String)()
rowColapsed.Add("Total")
rowColapsed.Add("StateId")
rowColapsed.Add("Amount")
Me.pivotGridControl1.TableControl.CollapseRow(rowColapsed)
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ExpandColumn(System.String)">
<summary>
Expands the column for the specified unique text.
</summary>
<param name="uniqueText">An unique way of representation for the header cell which has a parent cell <see cref="P:Syncfusion.PivotAnalysis.Base.PivotCellInfo.UniqueText"/>.</param>
<example>This example shows how to expand a specific column with the given column mapping-name.
<code lang="C#">
<![CDATA[
// Expand the specific column with the given column mapping name.
this.pivotGridControl1.TableControl.ExpandColumn("Amount");
]]>
</code>
<code lang="VB">
<![CDATA[
' Expand the specific column with the given column mapping name.
Me.pivotGridControl1.TableControl.ExpandColumn("Amount")
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ExpandColumn(System.Collections.Generic.List{System.String})">
<summary>
Expand the Columns for provided array of unique text.
</summary>
<param name="list">Array of Unique text of the Expander headers.</param>
<example>This example shows how to expand the list of columns.
<code lang="C#">
<![CDATA[
// Expands all the columns. Here "Total", "StateId", "Amount" are all mapping names.
List<string> myExpandingColumns = new List<string>();
myExpandingColumns.Add("Total");
myExpandingColumns.Add("StateId");
myExpandingColumns.Add("Amount");
this.pivotGridControl1.TableControl.ExpandColumn(myExpandingColumns);
]]>
</code>
<code lang="VB">
<![CDATA[
' Expands all the columns. Here "Total", "StateId", "Amount" are all mapping names.
Dim myExpandingColumns As New List(Of String)()
myExpandingColumns.Add("Total")
myExpandingColumns.Add("StateId")
myExpandingColumns.Add("Amount")
Me.pivotGridControl1.TableControl.ExpandColumn(myExpandingColumns)
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CollapseColumn(System.String)">
<summary>
Collapses the column for the specified unique text.
</summary>
<param name="uniqueText">An unique way of representation for the header cell which has a parent cell <see cref="P:Syncfusion.PivotAnalysis.Base.PivotCellInfo.UniqueText"/>.</param>
<example>This example shows how to collapse a column with a specified column header-mapping name.
<code lang="C#">
<![CDATA[
// Collapse the specified column. Here "Total" is column mapping name.
this.pivotGridControl1.TableControl.CollapseColumn("Total");
]]>
</code>
<code lang="VB">
<![CDATA[
' Collapse the specified column. Here "Total" is column mapping name.
Me.pivotGridControl1.TableControl.CollapseColumn("Total")
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CollapseColumn(System.Collections.Generic.List{System.String})">
<summary>
Collapse the Columns for the specified unique text.
</summary>
<param name="list">Array of Unique text of the Expander headers.</param>
<example>This example shows how to collapse a list of columns.
<code lang="C#">
<![CDATA[
// Collapses a list of columns. Here "Total", "StateId", "Amount" are all mapping names.
List<string> collumnColapsed = new List<string>();
// Columns to be collapsed.
collumnColapsed.Add("Total");
collumnColapsed.Add("StateId");
collumnColapsed.Add("Amount");
this.pivotGridControl1.TableControl.CollapseColumn(collumnColapsed);
]]>
</code>
<code lang="VB">
<![CDATA[
' Collapses a list of columns. Here "Total", "StateId", "Amount" are all mapping names.
Dim collumnColapsed As New List(Of String)()
' Columns to be collapsed.
collumnColapsed.Add("Total")
collumnColapsed.Add("StateId")
collumnColapsed.Add("Amount")
Me.pivotGridControl1.TableControl.CollapseColumn(collumnColapsed)
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.InvalidateCells">
<summary>
Invalidates the cells.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.InvalidateCells(Syncfusion.Windows.Forms.Grid.GridRangeInfo)">
<summary>
Invalidates a range of cells.
</summary>
<param name="range">range to be invalidated</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SynchronizePivotItems(System.Collections.Specialized.NotifyCollectionChangedEventArgs,System.Boolean)">
<summary>
To synchronize the column or row items with the pivot grid control.
</summary>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
<param name="isRow">Represents the boolean value.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SynchronizeCalculations(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
To synchronize the calculation items with the pivot grid control.
</summary>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<!-- Badly formed XML comment ignored for member "M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SynchronizeFilters(System.Collections.Specialized.NotifyCollectionChangedEventArgs)" -->
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseOnExpanding(Syncfusion.Windows.Forms.PivotAnalysis.ExpandingEventArgs,Syncfusion.PivotAnalysis.Base.PivotCellInfo)">
<summary>
Raises the OnExpanding event.
</summary>
<param name="expandingEventArgs">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpandingEventArgs"/> instance containing the event data.</param>
<param name="OriginalCell">Information about specific cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseOnCollapsing(Syncfusion.Windows.Forms.PivotAnalysis.CollapsingEventArgs,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Raises the OnCollapsing Event.
</summary>
<param name="collapsingEventArgs">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.CollapsingEventArgs"/> instance containing the event data.</param>
<param name="styleInfo">Stores the information about cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CellStyle_PropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Handles the PropertyChanged event of the CellStyle control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GetColumnList(System.Int32)">
<summary>
Gets the column list.
</summary>
<param name="col">Position of the selected item.</param>
<returns>List of columns in selected item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GetRowList(System.Int32)">
<summary>
Gets the row list.
</summary>
<param name="row">Position of the selected item.</param>
<returns>List of rows in selected item.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SynchronizeGrid(Syncfusion.PivotAnalysis.Base.PivotSchemaChangedArgs)">
<summary>
Synchronizes the Picot grid.
</summary>
<param name="e">The <see cref="T:Syncfusion.PivotAnalysis.Base.PivotSchemaChangedArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SetExpandCollapse(System.Int32,System.Int32)">
<summary>
Performs the Expand or Collapse operations.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.InternalRefresh">
<summary>
Refreshes the control without affecting persistence of expand or collapse states.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ProcessBitmap(System.Drawing.Bitmap)">
<summary>
Used Internally to process BorderColor of bitmap.
</summary>
<param name="bm">The bitmap to be processed.</param>
<returns>A bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RemoveCollapsedNodes">
<summary>
Removes every nodes that are in collapsed state.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ApplyRowCols">
<summary>
Performs the Row columns operations.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GrandTotalsRendering">
<summary>
Performs the grand total operations.
</summary>
<exception cref="T:System.NullReferenceException">If PivotEngine is Null</exception>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SubTotalsRendering">
<summary>
Performs the Sub-total operations.
</summary>
<exception cref="T:System.InvalidOperationException">If PivotEngine is Null.</exception>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseSelectionEvent(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs)">
<summary>
Raises the Grid Selection event.
</summary>
<param name="SelectionChangingEventArgs">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseOnCollapsed(Syncfusion.Windows.Forms.PivotAnalysis.CollapsedEventArgs)">
<summary>
Raises the OnCollapsed Event.
</summary>
<param name="collapsedEventArgs">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.CollapsedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseHyperlinkCellClick(Syncfusion.Windows.Forms.PivotAnalysis.HyperlinkCellClickEventArgs)">
<summary>
Raises the hyper-link cell click.
</summary>
<param name="hyperlinkCellClickEventArgs">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HyperlinkCellClickEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseDataRefreshing(Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshingEventArgs)">
<summary>
Raises the Data refreshing event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshingEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseDataRefreshed(Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshedEventArgs)">
<summary>
Triggered when the data gets refreshed.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshingEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseOnExpanded(Syncfusion.Windows.Forms.PivotAnalysis.ExpandedEventArgs)">
<summary>
Raises the on OnExpanded Event.
</summary>
<param name="expandedEventArgs">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpandedEventArgs"/> instance containing the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.EnableBusyAnimationIcon">
<summary>
Disables the Busy Animation Icon.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.DisableBusyAnimationIcon">
<summary>
Disables the Busy Animation Icon.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.IntializeModel">
<summary>
Initializes the Grid model.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotGridControlBase_CurrentCellStartEditing(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Occurs before the current cell switches into edit mode.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The<see cref="T:System.ComponentModel.CancelEventArgs "/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnCreateControl">
<summary>
When overridden in a derived class, is invoked whenever application code or internal processes call <see cref="M:System.Windows.FrameworkElement.ApplyTemplate"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnDrawCell(Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs)">
<summary>
Overridden to raises the cell drawn event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnRightToLeftChanged(System.EventArgs)">
<summary>
Overridden to handle the PivotGridControl changed to RTL mode.
</summary>
<param name="e">The<see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnTouchPanBegin(System.Drawing.Point)">
<summary>
Initialize the touch selection operation or touch scrolling operations.
</summary>
<param name="touchBeginPoint">Touch position when panning operation start</param>
<returns>Returns false when do other operations like selection</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnTouchPan(System.Drawing.Point,System.Boolean)">
<summary>
Handles the touch selection or scrolling operations
</summary>
<param name="currentTouchPoint">Current touch position</param>
<param name="isSwipeScroll">Used to check the swipe scrolling operation occurs in the control. When isSwipeScroll is true then cancel the operations while doing selection operations.</param>
<returns>Retruns false if do the selection process. Otherwise return true</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnTouchPanEnd(System.Drawing.Point)">
<summary>
Call the mouse up method when selection process done, otherwise call the base method to end the panning operation.
</summary>
<param name="touchEndPoint">touch control end point</param>
<returns>Return false when resizing or selection or dragging process done</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnShowDisabledGroupBackgroundPropertyChanged(System.Object,System.EventArgs)">
<exclude/>
<summary>
Occurs when the OnShowDisabledGroupBackground property gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Model_SelectionChanging(System.Object,Syncfusion.Windows.Forms.Grid.GridSelectionChangingEventArgs)">
<summary>
Occurs before selecting a range of cells.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridSelectionChangingEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SynchronizeEngine">
<summary>
Synchronize the PivotEngine.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.engine_PivotSchemaChanged(System.Object,Syncfusion.PivotAnalysis.Base.PivotSchemaChangedArgs)">
<summary>
Triggered when the pivot schema gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.PivotAnalysis.Base.PivotSchemaChangedArgs"/> contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseExpandEvents(Syncfusion.PivotAnalysis.Base.PivotCellInfo,System.Int32,System.Int32)">
<summary>
Raises expanding and expanded events for the provided cell information.
</summary>
<param name="cellInfo">Cell information to be expanded.</param>
<param name="row">Row index of the expander cell.</param>
<param name="column">Column index of the expander cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RaiseCollapseEvents(Syncfusion.PivotAnalysis.Base.PivotCellInfo,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Int32,System.Int32)">
<summary>
Raises collapsing and collapsed events for the provided cell information.
</summary>
<param name="cellInfo">Cell information to be expanded.</param>
<param name="styleInfo">Style of the cell.</param>
<param name="row">Row index of the expander cell.</param>
<param name="column">Column index of the expander cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.UpdateMergeCells">
<summary>
Updates the merged cells that needs to be modified in PivotGridControl while populating the Grid.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.BackgroundApplyRowCols">
<summary>
This method is used for Asynchronous data processing using Background Worker.
This has been implemented for .Net Framework version below 4.0.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.QueryItemAvailability(Syncfusion.PivotAnalysis.Base.PivotItem)">
<summary>
Adds the pivot item as collection to internal check with PivotschemaDesigner.
</summary>
<param name="item">The PivotItem to be added in the collection</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.populateCollection">
<summary>
Used for populating completeTablelist dictionary with fieldHeader/ fieldMapping Name as key.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotGridControlBase_WindowScrolling(System.Object,Syncfusion.Windows.Forms.ScrollWindowEventArgs)">
<summary>
Triggered to invalidate the GroupBar.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotGridControlBase_CellButtonClicked(System.Object,Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs)">
<summary>
Triggered if the Expand or Collapse button is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GetCellHashKey(System.Int32,System.Int32)">
<summary>
Gets the cell hash key.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
<returns>Point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RemoveCachedValue(System.Int32,System.Int32)">
<summary>
Removes the cached value from the cell.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.CacheValue(System.Int32,System.Int32,System.String)">
<summary>
Computes the cached value of a cell.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
<param name="value">String.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ClickRow(System.Int32,System.Int32)">
<summary>
Computes the Row value for Expand or Collapse operation.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SetHiddenRows(System.Int32,System.Int32)">
<summary>
To collapse the row groups by hide the rows.
</summary>
<param name="from">The from row index to hide.</param>
<param name="last">The last row index to hide</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RemoveHiddenRows(System.Int32,System.Int32)">
<summary>
To expand the row groups by unhide the rows.
</summary>
<param name="from">The from row index to hide.</param>
<param name="last">The last row index to hide</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SetHiddenColumns(System.Int32,System.Int32)">
<summary>
To collapse the column groups by hide the columns.
</summary>
<param name="from">The from row index to hide.</param>
<param name="last">The last row index to hide</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RemoveHiddenColumns(System.Int32,System.Int32)">
<summary>
To expand the column groups by unhide the columns.
</summary>
<param name="from">The from row index to hide.</param>
<param name="last">The last row index to hide</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ClickCol(System.Int32,System.Int32)">
<summary>
Computes the Column value for Expand/Collapse operation.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SetCollapsedColRange(System.Int32,System.Int32)">
<summary>
Sets the collapsed Column range.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GetCollapsedCols(System.Int32,System.Int32)">
<summary>
Provides the information regarding the collapsed columns.
</summary>
<param name="rowIndex">Row index.</param>
<param name="extendCol">Column index.</param>
<returns>Index of collapsed columns.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SetCollapsedRowRange(System.Int32,System.Int32)">
<summary>
Performs collapsed Row range computations.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GetCollapsedRows(System.Int32,System.Int32)">
<summary>
Provides info regarding the collapsed Rows.
</summary>
<param name="extendRow">Row index.</param>
<param name="colIndex">Column index.</param>
<returns>Index of collapsed rows.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SetCellValue(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.PivotAnalysis.Base.PivotCellInfo,System.Object)">
<summary>
Sets the CellValue.
</summary>
<param name="styleInfo">Provides style properties of the cell.</param>
<param name="cellInfo">Provides info regarding the specific cell.</param>
<param name="tag">Specifies the cell type.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Model_QueryCellInfo(System.Object,Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Triggered and provides info regarding the GridModel.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ApplyScrollBarStyle(System.String)">
<summary>
Sets the scrollbar style for the required theme
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ApplyStyle(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Applies style from the supplied <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> values.
</summary>
<param name="styleInfo">GridStyleInfo</param>
<param name="cellStyle">GridStyleInfo</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.GetAssociatedMeasure(Syncfusion.PivotAnalysis.Base.PivotCellInfo,System.Int32,System.Int32)">
<summary>
Gets the associated measure.
</summary>
<param name="cellInfo">The cell information.</param>
<param name="rowIndex">Index of the row.</param>
<param name="columnIndex">Index of the column.</param>
<returns>The field name, if there is no Pivot calculations; Otherwise the formatted text of the specified cell.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.FillSelectedItems(Syncfusion.Windows.Forms.Grid.GridRangeInfo)">
<summary>
Fills the selected items with appropriate row, column and value based on the specified range.
</summary>
<param name="gridRangeInfo">The Grid range information.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.RowHiddenGroup(System.Int32)">
<summary>
Checks whether the given row index is in row hidden group.
</summary>
<param name="row">The row index.</param>
<returns>Returns true, if row is within hidden row group; otherwise, false.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ColumnHiddenGroup(System.Int32)">
<summary>
Checks whether the given column index is in column hidden group.
</summary>
<param name="col">The column index.</param>
<returns>Returns true, if column is within hidden column group; otherwise, false.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ValidatePivotEngineRefresh">
<summary>
This method is used to validate the refresh event of PivotEngine.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.PivotGridControlBase_CurrentCellActivating(System.Object,Syncfusion.Windows.Forms.Grid.GridCurrentCellActivatingEventArgs)">
<summary>
Triggered if current cell in the grid gets activated.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The event <see cref="T:Syncfusion.Windows.Forms.Grid.GridCurrentCellActivatingEventArgs"/>data</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.item_PropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
<summary>
Triggered when the pivot item show subtotals property gets changed.
</summary>
<param name="sender">The Control.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.FilterItems_CollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the filter items collection gets changed.
</summary>
<param name="sender">The Control.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnPivotRowsCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the Pivot rows collection changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnPivotColumnsCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the Pivot columns collection gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnCalculationsCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the calculations collection gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnFiltersCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the filters collection gets changed .
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.OnItemSourceChanged(System.Object,Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs)">
<summary>
Triggered when the Item source gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown">
<summary>
Represents a control that allows the user to filter required data.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<param name="GridControl">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> that holds the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown"/> control.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.PivotControl">
<summary>
Gets or sets the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> that holds the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown"/> control.
</summary>
<value>The grid control.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.FilterList">
<summary>
Gets or sets the collection of filter items.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.FilterListForDateTime">
<summary>
Gets or sets the collection of non-formatted filter items for the DateTime-type field.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Raises the Paint event.
</summary>
<param name="e">The PaintEventArgs that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.setItems">
<summary>
Sets the items that are displayed in the Filter drop down.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.SelectedAtLeastOne">
<summary>
Determines whether at-least one of the item gets selected.
</summary>
<returns><b>True</b>If at-least one item gets selected;Otherwise<b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.CloseFilterPopUp">
<summary>
Method to close the filter drop down.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.BtnOk_Click(System.Object,System.EventArgs)">
<summary>
Triggered when the OK-button of the filter drop down is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The<see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.BtnCancel_Click(System.Object,System.EventArgs)">
<summary>
Triggered when the CANCEl- button of the filter drop down is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.EventArgs"/> contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.FilterDropDown_CheckStateChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the check state of the items modified in the Filter drop down.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper">
<exclude/>
<summary>
Provides functionality for filtering the items in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.
</summary>
<param name="grid">The instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper.GetFilterItem(System.ComponentModel.PropertyDescriptor,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl,System.String)">
<summary>
A helper function which is used to return only the filtered items of the field.
</summary>
<returns>The filtered items.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper.GetFilterItemsForDateTime(System.ComponentModel.PropertyDescriptor,System.String)">
<summary>
A helper function which is used to return only the Non-filtered items of the field.
</summary>
<returns>The Non-formatted filtered items.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper.RequireFilterItem(System.ComponentModel.PropertyDescriptor)">
<summary>
A helper function which is used to return all the items bounded with the item source.
</summary>
<returns>The items in the FilterCollection.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper.GetComparer(System.Type)">
<summary>
Gets the comparer for filter items collection.
</summary>
<param name="type">Property type of the item.</param>
<returns>IComparer</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper.GetPropertyDescriptor(System.String)">
<summary>
Gets the property descriptor of the field.
</summary>
<param name="fieldName">Name of the field to perform calculations.</param>
<returns>The name of the field to be used in calculations.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterHelper.GetComplexPropertyDescriptor(System.ComponentModel.PropertyDescriptorCollection,System.String)">
<summary>
Get the PropertyDescriptor for complex property
</summary>
<param name="pdc">Which can describes PropertyDescriptorCollection.</param>
<param name="columnName">Column name.</param>
<returns></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GridAutoSizeOption">
<exclude/>
<summary>
Defines the constants that specifies the auto size option for the pivot grid.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GridAutoSizeOption.All">
<summary>
All rows will be resized.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GridAutoSizeOption.None">
<summary>
None of the rows will be resized.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GridAutoSizeOption.FixedCount">
<summary>
The value specified in AutoSizeRowCount will be resized.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GridAutoSizeOption.TotalRows">
<summary>
The Grand Total rows will be used to determine column size.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConstants">
<summary>
Represents a class that provides the constants for PivotGridControl.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConstants.AllString">
<summary>
Used to store the string as constant.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridConstants.TotalString">
<summary>
Used to store the string as constant.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Common">
<exclude/>
<summary>
Represents the common class.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ReverseOrderComparer">
<summary>
Represents a class that performs reverse order comparison.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ReverseOrderComparer.#ctor(System.Collections.IComparer)">
<summary>
Used to assign reverse order comparer to PivotItem.
</summary>
<param name="comparer">The comparer.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ReverseOrderComparer.#ctor">
<summary>
Used to assign reverse order comparer to PivotItem.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ReverseOrderComparer.Compare(System.Object,System.Object)">
<summary>
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
</summary>
<param name="x">The first object to compare.</param>
<param name="y">The second object to compare.</param>
<returns>
A signed integer value that indicates the relative values of the given objects.
</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar">
<summary>
Represents a group bar control that holds filter items specified in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Initializes a new instance of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.
</summary>
<param name="this.tableControl.tableControl">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> that holds the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar"/>.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.GridControl">
<summary>
Gets the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> that holds the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.Invalidate">
<summary>
Invalidates the entire surface of the control and causes the control to be redrawn.
</summary>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.OpenDragHeader">
<summary>
Opens the created drag window and initiates the painting in drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.UpdateDragHeader">
<summary>
Updates the DragWindow to the current mouse position.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.CloseDragHeader">
<summary>
Closes the drag window which usually done in mouse up.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.GetDragWindowLocation(System.Drawing.Point)">
<summary>
Gets the location of the drag window.
</summary>
<returns>Point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.OpenRedArrowIndicator">
<summary>
Opens the created arrow bitmap and initiates the painting in drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.UpdateRedArrowIndicatorBitmap(System.Drawing.Point)">
<summary>
Updates the arrow bitmap to the current location of drag window.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.CloseRedArrowIndicator">
<summary>
Closes the indicator which is usually done at mouse up.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.ApplySize">
<summary>
Helper function which is used to apply the size of the cells in the FilterBar. An alternate solution to avoid events.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.ApplyItems">
<summary>
Helper function which is used to apply the value to the cells in the FilterBar. An alternate solution to avoid events.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.OnQueryCellInfo(Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControl.QueryCellInfo" /> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs" /> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.OnQueryRowHeight(Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Overrides and triggered when the row height is changed.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseDown"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseMove"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseUp"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.CreateRedArrowIndicatorBitmap">
<summary>
Creates the arrow indicator which used for indicating the dropping location.
</summary>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.CreateHeaderBitmap(Syncfusion.Windows.Forms.Grid.GridControlBase,System.Int32,System.Int32)">
<summary>
Creates a header bitmap which used in drag-window.
</summary>
<param name="grid">Group bar.</param>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.FilterBar_CellButtonClicked(System.Object,Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs)">
<summary>
Triggered when the FilterBar button is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.ResetCoveredCells">
<summary>
Performs the reset operations on covered range cells.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.WireGrid">
<summary>
Wires FilterBar to the Grid.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.PopupControlContainer1_CloseUp(System.Object,Syncfusion.Windows.Forms.PopupClosedEventArgs)">
<summary>
Triggered when the pop-up container is closed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.PopupClosedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBar.Filters_CollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the Filter's collection gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The<see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar">
<summary>
Represents a group bar control that groups pivot items added to <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.
</summary>
<param name="tableControl">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> that holds the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> control.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.GridControl">
<summary>
Gets the value of parent control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.Invalidate">
<summary>
Invalidates the entire surface of the control and causes the control to be redrawn.
</summary>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.ColIndexToField(System.Int32)">
<summary>
Gets the field index value for a given column index.
</summary>
<param name="colIndex">The column index.</param>
<returns>The field index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.OpenDragHeader">
<summary>
Opens the created drag window and initiates the painting in drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.UpdateDragHeader">
<summary>
Updates the DragWindow to the current mouse position.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.GetDragWindowLocation(System.Drawing.Point)">
<summary>
Gets the location of the drag window.
</summary>
<returns>Point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.CloseDragHeader">
<summary>
Closes the drag window which usually done in mouse u.p
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.OpenRedArrowIndicator">
<summary>
Opens the created arrow bitmap and initiates the painting in drag operations.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.UpdateRedArrowIndicatorBitmap(System.Drawing.Point)">
<summary>
Updates the arrow bitmap to the current location of drag window.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.CloseRedArrowIndicator">
<summary>
Closes the indicator which is usually done at mouse up.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.ApplySize">
<summary>
Helper function which is used to apply the size of the cells in the GroupBar. An alternate solution to avoid events.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.ApplyItems">
<summary>
Helper function which is used to apply the value to the cells in the GroupBar. An alternate solution to avoid events.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.WndProc(System.Windows.Forms.Message@)">
<exclude/>
<summary>An application-defined function that processes messages sent to a window.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggered when the mouse down event is done.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggered when the mouse move event in the grid is performed.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggered when the mouse up event is performed in the grid.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.OnQueryRowHeight(Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Overrides and triggered when the row height is changed.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.OnDrawCellDisplayText(Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs)">
<summary>
Overrides and triggered when the cell is drawn to display the text.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.OnQueryCellInfo(Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Overrides and triggered when the changes occurred in formating.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.GroupBar_CellButtonClicked(System.Object,Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs)">
<summary>
Triggered when the group bar's cell button is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.popupControlContainer1_CloseUp(System.Object,Syncfusion.Windows.Forms.PopupClosedEventArgs)">
<summary>
Triggered when the pop-up container is closed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.PopupClosedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.GroupBar_CellClick(System.Object,Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)">
<summary>
Triggered when sorting is to be performed on the group-bar cell is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.Sort(System.Int32,System.Int32,System.Int32)">
<summary>
Performs the sorting operations.
</summary>
<param name="colIndex">The column index.</param>
<param name="sortIndex">The sorted index.</param>
<param name="rowIndex">The row index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.CreateHeaderBitmap(Syncfusion.Windows.Forms.Grid.GridControlBase,System.Int32,System.Int32)">
<summary>
Creates a header bitmap which used in drag-window.
</summary>
<param name="grid">Group-bar.</param>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.CreateRedArrowIndicatorBitmap">
<summary>
Creates the arrow indicator which is used for indicating the dropping location.
</summary>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.PivotCalculations_CollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the pivot calculations are changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar.WireGrid">
<summary>
Wires GroupBar to the Grid.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper">
<exclude/>
<internalonly/>
<summary>
Provides functionality for dragging items in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.#ctor">
<summary>
Initializes a new instance of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.LastDragDropEffect">
<summary>
Gets the value of last drag and drop effect.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.IsDragging">
<summary>
Gets a value indicating whether the dragging is done or not.
</summary>
<value><b>true</b> if the dragging is done; otherwise <b> false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.DragWindow">
<summary>
Gets the value of the drag window.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.StartDrag(System.Drawing.Bitmap,System.Drawing.Point,System.Windows.Forms.DragDropEffects)">
<summary>
Performs the drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.DoDrag(System.Drawing.Point,System.Windows.Forms.DragDropEffects)">
<internalonly/>
<summary>Drags the group to the specified point.</summary>
<param name="p">The specified point.</param>
<param name="e">The <see cref="T:System.Windows.Forms.DragDropEffects"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.CancelDrag">
<internalonly/>
<summary>Cancels the dragging operations.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.EndDrag">
<summary>Stops the dragging operations.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.CheckDragCursor(System.Windows.Forms.DragDropEffects)">
<exclude/>
<internalonly/>
<summary>
Checks the drag cursor's effects. Used internally.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupDragHelper.StopDrag">
<internalonly/>
<summary>
Halts the drag operations. Used internally.</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow">
<exclude/>
<internalonly/>
<summary>
Represents a class for PivotGrid group-drag window. Used internally.</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow.#ctor">
<summary>
Initializes a new instance of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow.DragBitmap">
<summary>
Gets or sets the bitmap image.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow.StartDrag(System.Drawing.Point)">
<summary>
Determines whether to start the drag operation.
</summary>
<param name="p">Point.</param>
<returns><b>true</b> if allows to start drag operation; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow.MoveTo(System.Drawing.Point)">
<summary>
Determines whether to the move the drag window.
</summary>
<param name="p">Point.</param>
<returns><b>true</b> if allows the drag-window to move; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow.StopDrag">
<summary>
Determines whether to stop the drag operation.
</summary>
<returns><b>true</b> if drag operation is stopped; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridGroupDragWindow._Move(System.Drawing.Point)">
<summary>
Sets the size of the group drag window.
</summary>
<param name="p">Point.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterElementComparer">
<summary>
Represents a class that compares the given two objects.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterElementComparer.#ctor(System.Collections.IComparer)">
<summary>
Initializes a new instance of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterElementComparer"/> class with the specified <see cref="T:System.Collections.IComparer"/>.
</summary>
<param name="comparer">The <see cref="T:System.Collections.IComparer"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterElementComparer.Compare(Syncfusion.PivotAnalysis.Base.FilterItemElement,Syncfusion.PivotAnalysis.Base.FilterItemElement)">
<summary>
Compares the given two given objects.
</summary>
<param name="x">Object1.</param>
<param name="y">Object2.</param>
<returns>
A signed integer that indicates the relative values of x and y.
</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.PivotValueEdited"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager">
<summary>
Provides methods to handle the editing related events happened in PivotGrid control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.
</summary>
<param name="pivotGrid">The pivot grid control that handles editing values.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.PivotValueEdited">
<summary>
Occurs when the pivot values are edited.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.HideExpanders">
<summary>
Gets or sets a value indicating whether the expanders should be visible or not.
</summary>
<value><b>true</b> if the expanders are visible; otherwise, <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.AllowEditingOfTotalCells">
<summary>
Gets or sets a value indicating whether the user can edit total cells or not.
</summary>
<value><b>true</b> if the editing of total cells; otherwise <b>false </b>.</value>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.GetRowColumnPivotValuesAt(System.Int32,System.Int32,System.String@)">
<summary>
Gets the list of pivot values based on specified row and column indices.
</summary>
<param name="row">The row index of the cell.</param>
<param name="column">The column index of the cell.</param>
<param name="calcFieldName">Returns the name of the calculated field at the specified row and column indices.</param>
<returns>Returns a list of row and column pivot values.</returns>
<remarks>
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 <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotRows"/> and then <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotColumns"/>
to this returned ordered list.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.Redo">
<summary>
Redo the last handled operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.Undo">
<summary>
Undo the last handled operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.ChangeValue(System.Object,System.Object,System.Int32,System.Int32,Syncfusion.PivotAnalysis.Base.PivotCellInfo)">
<summary>
Updates the cell with the edited value.
</summary>
<param name="oldValue">The cell value before editing the cell.</param>
<param name="newValue">The cell value after editing the cell.</param>
<param name="row1">The row index of the cell.</param>
<param name="col1">The column index of the cell.</param>
<param name="pivotCellInfo">The information about the edited cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.WireEvents">
<summary>
Wires the required events in to the TableControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.UnWireEvents">
<summary>
Unwire the events from thethis.tableControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.GetCalculationNameFromGridRowColumnIndex(System.Int32)">
<summary>
Returns the name of the field corresponding to the index.
</summary>
<returns>Field name.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.ChangeValue(System.Object,System.Object,System.Int32,System.Int32,System.String)">
<summary>
Updates the cell with new edited/updated value.
</summary>
<param name="oldValue">Old values of the cell.</param>
<param name="newValue">New values of the cell.</param>
<param name="row">Row index.</param>
<param name="col">Column index.</param>
<param name="propertyName">The changed property.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.GetNextSummaryOverColIndex(System.Int32,System.Int32)">
<summary>
Gets the index of the next summary row with respect to the column index provided.
</summary>
<param name="row1">Row index.</param>
<param name="col">Column index.</param>
<returns>summary row index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.GetNextSummaryDownRowIndex(System.Int32,System.Int32)">
<summary>
Gets the index of the next summary row with respect to the Row index provided.
</summary>
<param name="row">Row index.</param>
<param name="col1">Column index.</param>
<returns>summary row index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.TableControl_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Triggered when the Key down is pressed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The<see cref="T:System.Windows.Forms.KeyEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.TableControl_LostFocus(System.Object,System.EventArgs)">
<summary>
Triggered when the control lost the Focus.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The<see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.Model_SaveCellInfo(System.Object,Syncfusion.Windows.Forms.Grid.GridSaveCellInfoEventArgs)">
<summary>
Triggered when the cell needs to save the information.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridSaveCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.tableControl_CurrentCellAcceptedChanges(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Occurs after the cell completes the editing
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.PivotValueEdited"/> event.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventArgs.Handled">
<summary>
Gets or sets a value indicating whether the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.PivotValueEdited"/> event is handled.
</summary>
<value><b>true</b> if the event is handled; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
<remarks>
If the event is not handled, the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager"/> will adjust the changed cell and any cell that depends upon it.
Set this property value as true to cancel the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.PivotValueEdited"/> event.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventArgs.PivotRowIndex">
<summary>
Gets the row index of the edited cell.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventArgs.PivotColumnIndex">
<summary>
Gets the column index of the edited cell.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventArgs.PivotCellInfo">
<summary>
Gets the information of the edited cell.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventArgs.OldValue">
<summary>
Gets the cell value before editing the cell.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueEditedEventArgs.NewValue">
<summary>
Gets the cell value after editing the cell.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex">
<summary>
Represents a pair of row and column indices.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex"/> structure with the specified row and column indices.
</summary>
<param name="r">The row index.</param>
<param name="c">The column index.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.Empty">
<summary>
Gets the empty row and column coordinates containing values of <see cref="F:System.Int32.MinValue"/>.
</summary>
<value>The empty.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.ColumnIndex">
<summary>
Gets or sets the column index.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.RowIndex">
<summary>
Gets or sets the row index.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.IsEmpty">
<summary>
Gets a value indicating whether this instance is empty or not.
</summary>
<value><b>true</b> if this instance is empty; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.Equals(System.Object)">
<summary>
Determines whether the specified object is equal to the current object.
</summary>
<param name="obj">The object to compare with the current object.</param>
<returns>
<b>true</b> if the specified object is equal to the current object; otherwise, <b>false</b>.
</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.GetHashCode">
<summary>
Serves as the default hash function.
</summary>
<returns>
A hash code for the current object.
</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.ToString">
<summary>
Returns a string that represents the current object.
</summary>
<returns>
A string that represents the current object.
</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.op_Equality(Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex,Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex)">
<summary>
Determines whether two specified objects have the same value.
</summary>
<param name="r1">The first row column index value to compare.</param>
<param name="r2">The second row column index value to compare.</param>
<returns><b>true</b> if the value of r1 is the same as the value of r2; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex.op_Inequality(Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex,Syncfusion.Windows.Forms.PivotAnalysis.RowColumnIndex)">
<summary>
Determines whether two specified objects have different values.
</summary>
<param name="r1">The first row column index value to compare.</param>
<param name="r2">The second row column index value to compare.</param>
<returns><b>true</b> if the value of r1 is different from the value of r2; otherwise, <b>false</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager">
<summary>
Represents the class that allows the PivotGrid control to automatically respond to the changes happened in the underlying data.
To enable this support, <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.EnableUpdating"/> property must be set to true.
</summary>
<remarks>
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&lt;T&gt; where T implements both INotifyPropertyChanging and INotifyPropertyChanged interfaces.<br/>
Additionally, IList must also implement INotifyCollectionChanged or IBindingList."
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.
</summary>
<param name="grid">The pivot grid control that responds to updates in the underlying data.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.ThrottleUpdateRate">
<summary>
Gets or sets the millisecond value representing the time between UI refreshes.
</summary>
<remarks>
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.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.InitializeUpdatingManager(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Initializes the updating manager with the associated settings of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.
</summary>
<param name="grid">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.UnwireEvents">
<summary>
UnWire the events from the PivotEngine.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.PopulateEngine">
<summary>
Populates the engine values and refreshes the PivotGrid control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.CheckUpdateCell(System.Int32,System.Int32)">
<summary>
Checks the index of the cell to be updated.
</summary>
<param name="row">The row index of the cell.</param>
<param name="col">The column index of the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.UpdateCell(System.Int32,System.Int32)">
<summary>
Updates the cell in the given index.
</summary>
<param name="row">Row index.</param>
<param name="col">Column index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager.updateTimer_Tick(System.Object,System.EventArgs)">
<summary>
Occurs when the timer tick changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/>class contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs">
<summary>
Provides data for the <see cref="!:PivotGridControlBase.ItemSourceChangedEventHandler"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs.OldValue">
<summary>
The value of the item before the change.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs.NewValue">
<summary>
The value of the item after the change.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshingEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.DataRefreshing"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshingEventArgs.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshingEventArgs"/> class.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshedEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.DataRefreshed"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshedEventArgs.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshedEventArgs"/> class.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SelectionChanged"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs.#ctor(Syncfusion.Windows.Forms.Grid.GridRangeInfo,Syncfusion.Windows.Forms.PivotAnalysis.SelectedItems,Syncfusion.Windows.Forms.Grid.GridSelectionReason)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs"/> class.
</summary>
<param name="gridRangeInfo">The grid range information.</param>
<param name="selectedItems">Indicates the selected items in the grid.</param>
<param name="selectionReason">Represents the selection reason for the grid.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.SelectedItems)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs"/> class.
</summary>
<param name="selectedItems">Indicates the selected items in the grid.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs.CellRangeInfo">
<summary>
Gets or sets the range information of the cell.
</summary>
<value>The range information of the cell.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs.SelectedItems">
<summary>
Gets or sets the value of selected items in the IEnumerable form.
</summary>
<value>The selected items.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs.SelectionReason">
<summary>
Gets or sets the reason for selection.
</summary>
<value>The selection reason.</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpandingEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Expanding"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpandingEventArgs.#ctor(Syncfusion.PivotAnalysis.Base.PivotCellInfo)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpandingEventArgs"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ExpandingEventArgs.PivotCellInfo">
<summary>
Gets or sets the information about pivot cell.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpandedEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Expanded"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpandedEventArgs.#ctor(Syncfusion.PivotAnalysis.Base.PivotCellInfo)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpandedEventArgs"/> class with the specified <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/>.
</summary>
<param name="PivotCellInfo">The information about the pivot cell.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ExpandedEventArgs.PivotCellInfo">
<summary>
Gets or sets the information about pivot cell.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.CollapsingEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Collapsing"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.CollapsingEventArgs.#ctor(Syncfusion.PivotAnalysis.Base.PivotCellInfo)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.CollapsingEventArgs"/> class with the specified <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/>.
</summary>
<param name="PivotCellInfo">The information about the pivot cell.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.CollapsingEventArgs.PivotCellInfo">
<summary>
Gets or sets the information about pivot cell.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.CollapsedEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Collapsed"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.CollapsedEventArgs.#ctor(Syncfusion.PivotAnalysis.Base.PivotCellInfo)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.CollapsedEventArgs"/> class with the specified <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/>.
</summary>
<param name="PivotCellInfo">The information about the pivot cell.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.CollapsedEventArgs.PivotCellInfo">
<summary>
Gets or sets the information about pivot cell.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.HyperlinkCellClickEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.HyperlinkCellClick"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HyperlinkCellClickEventArgs.#ctor(Syncfusion.PivotAnalysis.Base.PivotCellInfo)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HyperlinkCellClickEventArgs"/> class with the specified <see cref="T:Syncfusion.PivotAnalysis.Base.PivotCellInfo"/>.
</summary>
<param name="PivotCellInfo">The information about the pivot cell.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.HyperlinkCellClickEventArgs.PivotCellInfo">
<summary>
Gets or sets the information about pivot cell.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.ItemSourceChanged"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SelectionChanged">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.SelectionChanged"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Expanding">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Expanding"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpandingEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Expanded">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Expanded"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpandedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Collapsing">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Collapsing"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSelectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Collapsed">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.Collapsed"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.CollapsedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.HyperlinkCellClick">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.HyperlinkCellClick"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HyperlinkCellClickEventArgs"/> contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshing">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.DataRefreshing"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshingEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshed">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase.DataRefreshed"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DataRefreshedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupingBarLoaded">
<exclude/>
<summary>
Represents the method that will handle the grouping bar's loaded event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.AsyncStartingEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AsyncLoadStarted"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing">
<summary>
Implements the Office 2010 look and feel
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.VisualStyle">
<summary>
Gets the current VisualStyles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.ThemeName">
<summary>
Gets the current theme name.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.DrawHeaderStyle(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.ThemedHeaderDrawing.HeaderState)">
<summary>
Draws the header skins
</summary>
<param name="g">A <see cref="T:System.Drawing.Graphics"/> object.</param>
<param name="rect">A <see cref="T:System.Drawing.Rectangle"/> object that represents the drawing area.</param>
<param name="state">The current state of the header.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.GetHeaderBorderColors(System.Drawing.Color@,System.Drawing.Color@,System.Drawing.Color@,System.Drawing.Color@)">
<summary>
Returns the Header Border Colors.
</summary>
<param name="clrBottom">The bottom border color</param>
<param name="clrRight">The right border color</param>
<param name="clrInteriorFirst">The gradient start color for the header interior</param>
<param name="clrInteriorLast">The gradient end color for the header interior</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.GetHeaderBottomBorderStyle(System.Drawing.Color@,Syncfusion.Windows.Forms.GridBottomBorderWeight@)">
<summary>
Returns the Header Border styles.
</summary>
<param name="clrHeaderBottom">The bottom border color of header.</param>
<param name="borderWeight">The bottom border weight.</param>
<returns>returns the weight and color of bottom border.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.GetSortIconBrush(System.Drawing.Brush@,System.Drawing.Pen@)">
<summary>
Returns the SortIcon interior
</summary>
<param name="brush">The brush used to fill the sort icon</param>
<param name="pen">The pen used to draw the sort icon</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.GetGroupDropAreaColors(System.Drawing.Color@,System.Drawing.Color@,System.Drawing.Color@)">
<summary>
Returns the backcolor and header interior for GroupDropArea.
</summary>
<param name="backColor">The back color for GroupDropArea</param>
<param name="headerBorderTop">The top border color for GroupDropArea header</param>
<param name="headerBorderLeft">The left border color for GroupDropArea header</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.GetHeaderColors(System.Drawing.Color@,System.Drawing.Color@,System.Drawing.Color@)">
<summary>
Header style color of Grid
</summary>
<param name="backColor">Header color</param>
<param name="hoverColor">hover color</param>
<param name="pressedColor">pressed color</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.DrawPushButtonStyle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)">
<summary>
Draws the PushButton skins
</summary>
<param name="g">A <see cref="T:System.Drawing.Graphics"/> object.</param>
<param name="rect">A <see cref="T:System.Drawing.Rectangle"/> object that represents the drawing area.</param>
<param name="state">The current state of the button.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.DrawComboBoxStyle(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.ThemedComboBoxDrawing.DropDownState,System.Drawing.Color)">
<summary>
Draws the ComboBox skins
</summary>
<param name="g">A <see cref="T:System.Drawing.Graphics"/> object.</param>
<param name="rect">A <see cref="T:System.Drawing.Rectangle"/> object that represents the drawing area.</param>
<param name="state">The current state of the combo button.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.DrawSpinButtonStyle(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.ButtonID,System.Windows.Forms.ButtonState,System.Drawing.Color)">
<summary>
Draws the SpinButton skins
</summary>
<param name="g">A <see cref="T:System.Drawing.Graphics"/> object.</param>
<param name="rect">A <see cref="T:System.Drawing.Rectangle"/> object that represents the drawing area.</param>
<param name="btnId">An integer that represents the type of the button.</param>
<param name="btnState">The current state of the spin button.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.DrawCheckBoxStyle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState,System.Boolean)">
<summary>
Draws the CheckBox skins
</summary>
<param name="g">A <see cref="T:System.Drawing.Graphics"/> object.</param>
<param name="rect">A <see cref="T:System.Drawing.Rectangle"/> object that represents the drawing area.</param>
<param name="state">The current state of the checkbox</param>
<param name="mixedState">Specifies whether the button is tri-stated.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.DrawCheckBoxStyle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState,System.Boolean,System.Boolean)">
<summary>
Draws the CheckBox skins
</summary>
<param name="g">A <see cref="T:System.Drawing.Graphics"/> object.</param>
<param name="rect">A <see cref="T:System.Drawing.Rectangle"/> object that represents the drawing area.</param>
<param name="state">The current state of the checkbox</param>
<param name="mixedState">Specifies whether the button is tri-stated.</param>
<param name="intermediate">Specifies whether the button is intermediate state</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HeaderCellOffice2010VisualStyleDrawing.DrawRadioStyle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)">
<summary>
Draws the RadioButton skins
</summary>
<param name="g">A <see cref="T:System.Drawing.Graphics"/> object.</param>
<param name="rect">A <see cref="T:System.Drawing.Rectangle"/> object that represents the drawing area.</param>
<param name="state">The current state of the radio button</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup">
<summary>
Represents a class that maintains information about the hidden group.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.#ctor(System.Int32,System.Int32,System.Int32,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup"/> class with the specified from, to, level and group name parameters.
</summary>
<param name="from">The start range value.</param>
<param name="to">The end range value.</param>
<param name="level">The level value.</param>
<param name="groupName">The group name.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.#ctor(System.Int32,System.Int32,System.Int32,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup"/> class with the specified from, to, level, group name and total header parameters.
</summary>
<param name="from">The start range value.</param>
<param name="to">The end range value.</param>
<param name="level">The level value.</param>
<param name="groupName">The group name.</param>
<param name="totalHeader">The total header value.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.From">
<summary>
Gets or sets the start range value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.To">
<summary>
Gets or sets the end range value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.Level">
<summary>
Gets or sets the level value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.GroupName">
<summary>
Gets or sets the group name.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.ItemTotalHeader">
<summary>
Gets or sets the header of total item.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.ToString">
<summary>
Returns a string that represents the current <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup"/>.
</summary>
<returns>A string that represents the current <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup"/>.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup.Clone(Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup)">
<summary>
Creates a new object that is a copy of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup"/>.
</summary>
<param name="ParentGroup">The object that is to be cloned.</param>
<returns>A new object that is a copy of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup"/>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ExtensionClass">
<exclude/>
<summary>
Represents the class that defines as an extension class to <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExtensionClass.Has(System.Collections.Generic.List{Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup},Syncfusion.Windows.Forms.PivotAnalysis.HiddenGroup)">
<summary>
Determines whether the specified item is in the collection or not.
</summary>
<param name="t">The Collection.</param>
<param name="hiddenGroup">The hidden group.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption">
<exclude/>
<summary>
Represents the class
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.IColorOptions">
<summary>
Provides the functionality to metro color definition for usability.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.IColorOptions.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.IColorOptions.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.GroupBarColor">
<summary>
Represents the class that defines to customize the Color option for the GroupBar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.GroupBarColor.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default color is <b>Color.FromArgb(246, 247, 247)</b>;</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.FilterBarColor">
<summary>
Represents the class that defines to customize the Color option for the FilterBar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.FilterBarColor.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default color is <b>Color.FromArgb(35, 130, 195)</b>;</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.FilterBarColor.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
<value>The default value is<b>White</b>.</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.RowGroupBar">
<summary>
Represents the class that defines to customize the Color option for the RowGroupBar.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.RowGroupBar.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default color is <b>Color.FromArgb(246, 247, 247)</b>;</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTotalCell">
<summary>
Represents the class that defines to customize the Color option for the PivotTotalCell.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTotalCell.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default color is <b>Color.FromArgb(246, 247, 247)</b>;</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTotalCell.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
<value>The default value is<b>Color.FromArgb(92, 92, 92)</b>;</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotExpandCell">
<summary>
Represents the class that defines to customize the Color option for the PivotExpandCell.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotExpandCell.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default color is <b>Color.FromArgb(246, 247, 247)</b>;</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotExpandCell.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
<value>The default value is<b>FromArgb(92, 92, 92)</b>;</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotNormalCell">
<summary>
Represents the class that defines to customize the Color option for the PivotNormalCell.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotNormalCell.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default color is <b>Color.FromArgb(246, 247, 247)</b>;</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotNormalCell.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
<value>The default value is<b>Color.FromArgb(92, 92, 92)</b>;</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotFieldList">
<summary>
Represents the class that defines to customize the color options for the PivotFieldList in Metro theme.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotFieldList.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default value is<b>White</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotFieldList.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
<value>The default value is<b>White</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotFieldList.FieldImages">
<summary>
Gets or sets the value of list in field images.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.Heading">
<summary>
Represents a class that defines to customize the color options for the PivotFieldList's Headings in Metro theme.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.Heading.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default value is<b>Color.FromArgb(35, 130, 195)</b>;</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.Heading.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
<value>The default value is<b>White</b>.</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.Button">
<summary>
Represents a class that defines to customize the color options to the PivotFieldList's Buttons in Metro theme.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.Button.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default value is<b>Color.FromArgb(35, 130, 195)</b>;</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.Button.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
<value>The default color is <b>White</b>.</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotItems">
<summary>
Represents a class that defines to customize the color options for the PivotItems in Metro theme.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotItems.BackColor">
<summary>
Gets or sets the value of back color.
</summary>
<value>The default color is <b>Color.FromArgb(35, 130, 195)</b>;</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotItems.ForeColor">
<summary>
Gets or sets the value of fore color.
</summary>
<value>The default color is <b>White</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotItems.BorderColor">
<summary>
Gets or sets the value of border color.
</summary>
<value>The default color is <b>Gray</b>.</value>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTable">
<summary>
Represents a class to defines to customize the color options for the PivotFieldList in Metro theme.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTable.PivotFieldList">
<summary>
Gets or sets the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotFieldList"/> instance value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTable.FieldListScroller">
<summary>
Gets or sets the <see cref="T:Syncfusion.Windows.Forms.ScrollersFrame"/> instance value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTable.Button">
<summary>
Gets or sets <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.Button"/> instance value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTable.Heading">
<summary>
Gets or sets <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.Heading"/> instance value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotTable.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColors">
<summary>
Represents a Class that defines to customize the Metro color options to the PivotGrid.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColors.GroupBar">
<summary>
Gets or sets the metro colors for column group bar in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColors.FilterBar">
<summary>
Gets or sets the metro colors for filter bar in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColors.RowGroupBar">
<summary>
Gets or sets the metro colors for row group bar in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColors.PivotTable">
<summary>
Gets or sets the metro colors for pivot table field list associated with the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColors.PivotItems">
<exclude/>
<summary>
Gets or sets the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.MetroColorOption.PivotItems"/> instance value.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.MetroColors.PivotGridExpandCell">
<exclude/>
<summary>
Gets or sets color to the PivotGridExpanderCell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.MetroColors.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridException">
<summary>
Represents a class that provides the Exception info of the PivotGrid control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridException"/> class inherited from the <see cref="T:System.Exception"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridException"/> class inherited from the <see cref="T:System.Exception"/> class.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridException"/> class inherited from the <see cref="T:System.Exception"/> class.
</summary>
<param name="message">The message that describes the error.</param>
<param name="innerException">The exception that is the cause of the current exception, or a null reference. (Nothing in Visual Basic) if no inner exception is specified.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SearchOptions">
<summary>
Defines the constants that are used for searching help.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SearchOptions.Syncfusion">
<summary>
Represents Syncfusion.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SearchOptions.Forums">
<summary>
Represents Forums.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SearchOptions.KnowledgeBase">
<summary>
Represents Knowledge Base.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl">
<summary>
Represents a control that defines the pivot grid control with visual representation.
</summary>
<summary>
Represents a control that defines the pivot grid control with visual representation.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.pivotCalcFilter">
<summary>
Handles filter calculation in pivotGrid.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotBaseItems">
<summary>
Gets or sets the collection of base items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.#ctor(System.ComponentModel.IContainer)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> class with the specified <see cref="T:System.ComponentModel.IContainer"/>.
</summary>
<param name="container">The <see cref="T:System.ComponentModel.IContainer"/> instance that provides the functionality of container.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.FilterActionCompletedEventArgs">
<summary>
Handles the filter operation.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ItemSourceChanged">
<summary>
Occurs when the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ItemSource"/> property value gets changed.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ShowDisabledGroupBackgroundPropertyChanged">
<exclude/>
<summary>
Occurs when the property changed event occurs.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.FilterActionCompleted">
<summary>
Occurs when the Filter action gets completed.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AsyncLoadCompleted">
<summary>
Handles the AsyncCompleted event.
</summary>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AsyncLoadStarted">
<summary>
Handles the AsyncStarting event.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GridVisualStylesDrawing">
<summary>
Gets or sets the value of VisualStylesDrawing object.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GridVisualStyles">
<summary>
Gets or sets the <see cref="T:Syncfusion.Windows.Forms.GridVisualStyles"/> enumeration value.
</summary>
<example>This example shows how to use the GridVisualStyles property.
<code lang="C#">
<![CDATA[
// Sets the pivot grid to Office2007Blue.
this.pivotGridControl1.GridVisualStyles = GridVisualStyles.Office2007Blue;
]]>
</code>
<code lang="VB">
<![CDATA[
' Sets the pivot grid to Office2007Blue.
Me.pivotGridControl1.GridVisualStyles = GridVisualStyles.Office2007Blue
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotColumns">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.PivotItem"/>.
</summary>
<example>This example shows how to use the PivotColumns property. Here "Country" is the field's mapping name and "Total" is the header.
<code lang="C#">
<![CDATA[
// Adding PivotColumns to the pivot grid.
this.pivotGridControl1.PivotColumns.Add(new PivotItem { FieldMappingName = "Country", TotalHeader = "Total" });
]]>
</code>
<code lang="VB">
<![CDATA[
' Adding PivotColumns to the pivot grid. Here "Country" is the field's mapping name and "Total" is the header.
Me.pivotGridControl1.PivotColumns.Add(New PivotItem With {.FieldMappingName = "Country", .TotalHeader = "Total"})
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotFields">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.PivotItem"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotRows">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.PivotItem"/>.
</summary>
<example>This example shows how to use the PivotRows property.
<code lang="C#">
<![CDATA[
// Adding PivotRows to the pivot grid. Here "Product" is the field's mapping name and "Total" is the header.
this.pivotGridControl1.PivotRows.Add(new PivotItem { FieldMappingName = "Product", TotalHeader = "Total" });
]]>
</code>
<code lang="VB">
<![CDATA[
' Adding PivotRows to the pivot grid. Here "Product" is the field's mapping name and "Total" is the header.
Me.pivotGridControl1.PivotRows.Add(New PivotItem With {.FieldMappingName = "Product", .TotalHeader = "Total"})
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Filters">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.FilterExpression"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotCalculations">
<summary>
Gets the collection of <see cref="T:Syncfusion.PivotAnalysis.Base.PivotComputationInfo"/>.
</summary>
<example>This example shows how to use the PivotCalculations property.
<code lang="C#">
<![CDATA[
// Adding PivotCalculations to the pivot grid.
this.pivotGridControl1.PivotCalculations.Add(new PivotComputationInfo { FieldName = "Amount", Format = "#,##0", SummaryType = SummaryType.DoubleTotalSum});
]]>
</code>
<code lang="VB">
<![CDATA[
' Adding PivotCalculations to the pivot grid.
Me.pivotGridControl1.PivotCalculations.Add(New PivotComputationInfo With {.FieldName = "Amount", .Format = "#,##0", .SummaryType = SummaryType.DoubleTotalSum})
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.DeferLayoutUpdate">
<summary>
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.
</summary>
<value><b>true</b> if the layout gets updated immediately; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.EnableAsyncLoading">
<summary>
Gets or sets a value indicating whether to enable or disable asynchronous loading of a given <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<value><b>true</b> if the asynchronous loading is enabled; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
<remarks>
Enable this property, when the given <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> instance needs to be updated asynchronously on the background while other pivot operations are done.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.InAsyncMode">
<summary>
Gets a value indicating whether the given <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> instance is in asynchronous mode or not.
</summary>
<value><b>true</b> if the asynchronous loading is enabled; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.BusyAnimationIcon">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> value that needs to be displayed while Asynchronous process takes place.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ShowCalculationsAsColumns">
<summary>
Gets or sets a value indicating whether the calculations should be shown as columns or not.
</summary>
<value><b>true</b> if the calculations are displayed as columns; otherwise, <b>false</b>. The default value is <b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotEngine">
<summary>
Gets or sets the <see cref="T:Syncfusion.PivotAnalysis.Base.PivotEngine"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ItemSource">
<summary>
Gets or sets the value of item source.
</summary>
<example>This example shows how to use the ItemSource property.
<code lang="C#">
<![CDATA[
// Adding ItemSource to the pivot grid. Here "ProdutSales" is the datasource assigned to the grid.
this.pivotGridControl1.ItemSource = ProductSales.GetSalesData();
]]>
</code>
<code lang="VB">
<![CDATA[
' Adding ItemSource to the pivot grid. Here "ProdutSales" is the datasource assigned to the grid.
Me.pivotGridControl1.ItemSource = ProductSales.GetSalesData()
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ShowPivotTableFieldList">
<summary>
Gets or sets a value indicating whether to the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotSchemaDesigner"/> is shown or not.
</summary>
<value><b>true</b> if the pivot table field list is shown; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.EnableValueEditing">
<summary>
Gets or sets a value indicating whether to enable or disable editing of value cells.
</summary>
<value><b>true</b> if value editing is enabled; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.EditManager">
<summary>
Gets or sets the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager"/>.
</summary>
<remarks>
This property is used only when <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.EnableValueEditing"/> is set to true.
The EditManager handles direct editing of value cell contents. The <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.PivotValueEdited"/>
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 <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.AllowEditingOfTotalCells"/> and
<see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.HideExpanders"/> that control whether you can edit Total cells and whether the expander glyphs
are visible.
The EditManager has public method <see cref="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotEditingManager.GetRowColumnPivotValuesAt(System.Int32,System.Int32,System.String@)"/> that return lists of pivot values and raw data items for a specified row and column.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.EnableUpdating">
<summary>
Gets or sets a value indicating whether to enable or disable the updating of pivot cells.
</summary>
<value><b>true</b> if the updating is enabled; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.UpdateManager">
<summary>
Gets or sets the value of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotUpdatingManager"/>.
</summary>
<remarks>
This property is used only when the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.EnableUpdating"/> 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."
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AllowFiltering">
<summary>
Gets or sets a value indicating whether to enable or disable the filtering.
</summary>
<value><b>true</b> if filtering is enabled; otherwise, <b>false</b>. The default value is <b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ShowPivotValueChooser">
<summary>
Gets or sets a value indicating whether pivot value chooser dialog is shown or not.
</summary>
<value><b>true</b> if the pivot value chooser is shown; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
<remarks>
The PivotValueChooser allows the users to hide, show, or reorder the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotCalculations"/> in the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RowPivotsOnly"/> mode.
Note: This property is used only when the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RowPivotsOnly"/> is set to true.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AllowRowPivotDrag">
<summary>
Gets or sets a value indicating whether to enable or disable the drag and drop operation in <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RowPivotsOnly"/> mode.
</summary>
<value><b>true</b> if the dragging row is enabled; otherwise, <b>false</b>. The default value is<b>false</b>.</value>
<remarks>
This property is used only when the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RowPivotsOnly"/> is set to true.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AllowSorting">
<summary>
Gets or sets a value indicating whether to enable or disable the sorting.
</summary>
<value>If<b>True</b>Allows the sorting;Otherwise <b>False</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ShowGroupBar">
<summary>
Gets or sets a value indicating whether the grouping bar is shown or not.
</summary>
<value><b>true</b> if the group bar is shown; otherwise, <b>false</b>. The default value is <b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ShowSubTotals">
<summary>
Gets or sets a value indicating whether the subtotal values should be shown or not.
</summary>
<value><b>true</b> if the subtotal values is shown; otherwise, <b>false</b>. The default value is <b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ShowGrandTotals">
<summary>
Gets or sets a value indicating whether the grand total calculations should be computed by the engine or not.
</summary>
<value><b>true</b> if the calculations are computed by the engine; otherwise, <b>false</b>. The default value is <b>true</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RowPivotsOnly">
<summary>
Gets or sets a value indicating whether to enable or disable the row pivots only mode.
</summary>
<value><b>true</b> if the pivot rows alone is set; otherwise, <b> false</b> and sets both rows and columns. The default value is <b>false</b>.</value>
<remarks>
Specifies whether the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> 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.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PossiblePivotCalculations">
<summary>
Gets or sets the collection of possible <see cref="T:Syncfusion.PivotAnalysis.Base.PivotComputationInfo"/> instances that may appear in a given <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<remarks>
This property is used only when the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RowPivotsOnly"/> is enabled.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.HiddenRowIndexes">
<summary>
Gets the value of row indices that are hidden through filtering value columns.
</summary>
<remarks>
This property is could be used only when the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RowPivotsOnly"/> is enabled.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableModel">
<summary>
Gets the value of <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> instance that holds all data information about the grid.
</summary>
<example>This example shows how to use the TableModel property.
<code lang="C#">
<![CDATA[
// TableModel property gets all the information about the pivot table.
this.pivotGridControl1.TableModel.RowCount = 10;
this.pivotGridControl1.TableModel.RowStyles[3].BackColor = Color.Red;
this.pivotGridControl1.TableModel.Rows.DefaultSize = 20;
this.pivotGridControl1.TableModel.TableStyle.BackColor = Color.FromArgb(23, 23, 23);
this.pivotGridControl1.TableModel.TableStyle.TextColor = Color.FromArgb(230, 231, 232);
]]>
</code>
<code lang="VB">
<![CDATA[
' TableModel property gets all the information about the pivot table.
Me.pivotGridControl1.TableModel.RowCount = 10
Me.pivotGridControl1.TableModel.RowStyles(3).BackColor = Color.Red
Me.pivotGridControl1.TableModel.Rows.DefaultSize = 20
Me.pivotGridControl1.TableModel.TableStyle.BackColor = Color.FromArgb(23, 23, 23)
Me.pivotGridControl1.TableModel.TableStyle.TextColor = Color.FromArgb(230, 231, 232)
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableControl">
<summary>
Gets the value of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> instance that implements a grid control which displays a grid model.
</summary>
<example>This example shows how to use the TableControl property.
<code lang="C#">
<![CDATA[
// TableControl gets the all the information about the pivot grid table.
this.pivotGridControl1.TableControl.BorderStyle = BorderStyle.FixedSingle;
this.pivotGridControl1.TableControl.GroupDropArea.BackColor = Color.FromArgb(79, 80, 80);
]]>
</code>
<code lang="VB">
<![CDATA[
' TableControl gets the all the information about the pivot grid table.
Me.pivotGridControl1.TableControl.BorderStyle = BorderStyle.FixedSingle
Me.pivotGridControl1.TableControl.GroupDropArea.BackColor = Color.FromArgb(79, 80, 80)
]]>
</code>
</example>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotSchemaDesigner">
<summary>
Gets the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotSchemaDesigner"/> instance wired within the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.EnableTouchMode">
<summary>
Gets or sets a value indicating whether to enable or disable the touch mode.
</summary>
<value><b>true</b> if the touch mode is enabled; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Serialize">
<summary>
Serializes the PivotGrid to XML file in desired location using the save file dialog.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Serialize(System.String)">
<summary>
Serializes the PivotGrid to specified XML file.
</summary>
<param name="fileName">The file name.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Serialize(System.String,Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions)">
<summary>
Serializes the PivotGrid to XML file with specific serialization options.
</summary>
<param name="fileName">The file name.</param>
<param name="options">The options to include/exclude the pivot grid properties during serialization.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Serialize(System.IO.Stream)">
<summary>
Serializes the PivotGrid as stream and saves it in the default location.
</summary>
<param name="stream">The stream data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Serialize(System.IO.Stream,Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions)">
<summary>
Serializes the PivotGrid as stream with specific serialization options.
</summary>
<param name="stream">The stream data.</param>
<param name="options">The options to include/exclude the pivot grid properties during serialization.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.SerializeToXml">
<summary>
Serializes the PivotGrid to string format.
</summary>
<returns>The serialized XML content in string format.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Deserialize">
<summary>
Deserializes the PivotGrid from the desired XML file, selected using the open file dialog.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Deserialize(System.String)">
<summary>
Deserializes the PivotGrid from the specified XML file.
</summary>
<param name="fileName">The file name.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Deserialize(System.String,Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions)">
<summary>
Deserializes the PivotGrid from the specified XML file with the specified deserialization options.
</summary>
<param name="fileName">The file name.</param>
<param name="options">The options to include/exclude the pivot grid properties during deserialization.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Deserialize(System.IO.Stream)">
<summary>
Deserializes the PivotGrid from the specified file stream.
</summary>
<param name="stream">The stream data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Deserialize(System.IO.Stream,Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions)">
<summary>
Deserializes the PivotGrid from the specified file stream with specific deserialization options.
</summary>
<param name="stream">The stream data.</param>
<param name="options">The options to include/exclude the pivot grid properties during deserialization.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.DeserializeFromXml(System.String)">
<summary>
Deserializes the PivotGrid with the settings specified in the XML string.
</summary>
<param name="xmlString">serialized file in xml string format</param>
<returns></returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ApplyFilters(System.Boolean)">
<summary>
Performs the filtering operation.
</summary>
<remarks>
Uses the contents of <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.HiddenRowIndexes"/> to display pivot results filtered using calculation values. Any previous
filters optionally cleared depending upon clearExisitingFilter passed
This method only affects the display when <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RowPivotsOnly"/> is set to true.
</remarks>
<param name="clearExistingFilter">Boolean value.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ClearFilters">
<summary>
Clears the filters and redraws the pivot display.
</summary>
<example>This example shows how to clear the filters enabled in the grid.
<code lanh="C#">
<![CDATA[
// Clears the filters in the pivot grid.
this.pivotGridControl1.ClearFilters();
]]>
</code>
<code lang="VB">
<![CDATA[
' Clears the filters in the pivot grid.
Me.pivotGridControl1.ClearFilters()
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ClearFilters(System.Boolean)">
<summary>
Clears the filters that depends on refreshing the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<param name="refresh">Boolean value.</param>
<value>If<b>True</b>The pivot grid display is redrawn.Otherwise <b>False</b>.</value>
<example>This example shows how to clear filters enabled in the grid.
<code lang="C#">
<![CDATA[
// Clears the filters in the pivot grid considering whether to refresh the grid or not.
this.pivotGridControl1.ClearFilters(true);
]]>
</code>
<code lang="VB">
<![CDATA[
' Clears the filters in the pivot grid considering whether to refresh the grid or not.
Me.pivotGridControl1.ClearFilters(True)
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ReapplyFiltersAfterSort">
<summary>
Re-applies the filter when the sorting is done.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ApplyScaleToControl(System.Single)">
<summary>
Applies the scaling to the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<param name="sf">Represents floating number.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Refresh(System.Boolean)">
<summary>
Refreshes the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<param name="shouldPopulateEngine">Determines whether to populate the engine or not.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Refresh">
<summary>
Refreshes the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AttachSchemaGeneric(System.Windows.Forms.Control)">
<summary>
Performs visual representation.
</summary>
<param name="container">Contains the components with visual representation.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.CreatePivotGridControl(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Creates the new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/> class specifying the functionality of <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="model">The grid model.</param>
<returns>A new <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>instance.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ColIndexToField(System.Int32)">
<summary>
Gets the field index for the given column index.
</summary>
<param name="colIndex">Column index.</param>
<returns>Field index.</returns>
<example>This example shows how to get the field index of the specific column index.
<code lang="C#">
<![CDATA[
void TableControl_CellClick(object sender, Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs e)
{
// Gets the specified field index from the given column index.
int myFieldIndex = this.pivotGridControl1.ColIndexToField(e.ColIndex);
Console.WriteLine("The field index of the specified column is " + myFieldIndex);
}
]]>
</code>
<code lang="VB">
<![CDATA[
Private Sub TableControl_CellClick(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)
' Gets the specified field index from the given column index.
Dim myFieldIndex As Integer = Me.pivotGridControl1.ColIndexToField(e.ColIndex)
Console.WriteLine("The field index of the specified column is " & myFieldIndex)
End Sub
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GetColumnIndexFromName(System.String)">
<summary>
Gets the column index for the corresponding field name specified.
</summary>
<param name="fieldName">Stores the field name.</param>
<returns>Column index.</returns>
<example>This example shows how to get the column index with the specified field name.
<code lang="C#">
<![CDATA[
// Gets the specified Column index of the field. Here "Amount" is the field name.
int columnIndex = this.pivotGridControl1.GetColumnIndexFromName("Amount");
Console.WriteLine("The Column index of the specified field is " + columnIndex);
]]>
</code>
<code lang="VB">
<![CDATA[
' Gets the specified Column index of the field. Here "Amount" is the field name.
Dim columnIndex As Integer = Me.pivotGridControl1.GetColumnIndexFromName("Amount")
Console.WriteLine("The Column index of the specified field is " & columnIndex)
]]>
</code>
</example>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Sort(System.Int32,System.Int32,System.Int32)">
<summary>
Performs the sort operation.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
<param name="intermediateIndex">Intermediate index</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.OpenRedArrowIndicator">
<summary>
Opens the created arrow bitmap and initiates the painting in drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.UpdateRedArrowIndicatorBitmap(System.Drawing.Point)">
<summary>
Updates the arrow bitmap to the current location of drag window.
</summary>
<param name="location">Location of the arrow indicator.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.CloseRedArrowIndicator">
<summary>
Closes the indicator which usually done at mouse up.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.OpenDragHeader">
<summary>
Opens the created drag window and initiates the painting in drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.UpdateDragHeader">
<summary>
Updates the DragWindow to the current mouse position.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GetDragWindowLocation(System.Drawing.Point)">
<summary>
Gets the location of the drag window.
</summary>
<param name="srcLocation">Location of the drag window.</param>
<returns>Point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.CloseDragHeader">
<summary>
Closes the drag window which usually done in mouse up.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.OnFilterActionCompleted(System.Object,System.EventArgs)">
<summary>
Raises the filter action completed event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.HideAllEmptyGroups">
<summary>
Hides all the empty groups from the pivot display.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.CollapseSchema">
<summary>
Collapses the schema in the PivotGrid control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Schema">
<summary>
Defines the schema of the PivotGrid control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GetColumnIndexFromRowHeaderName(System.String)">
<summary>
Gets the column index from the corresponding row header name.
</summary>
<param name="rowHeaderName">Row header name.</param>
<returns>Column index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GetNameAt(System.Int32)">
<summary>
Gets the field name from the corresponding column index.
</summary>
<param name="colIndex">Column index.</param>
<returns>Field name.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RaiseAsyncLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs)">
<summary>
Triggered when the Asynchronous process is completed.
</summary>
<param name="e">The Event Arguments.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.RaiseAsyncLoadStarted(System.ComponentModel.CancelEventArgs)">
<summary>
Triggered when the Asynchronous process is started.
</summary>
<param name="e">The Event Arguments.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.OnRightToLeftChanged(System.EventArgs)">
<summary>
Overrides and handles the Right-to-Left changed event.
</summary>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.OnShowDisabledGroupBackgroundPropertyChanged(System.Object,System.EventArgs)">
<exclude/>
<summary>
Raises the ShowDisabledGroupbackground property changed event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.NewCalculationItem(System.String)">
<summary>
Performs the new calculation on the item.
</summary>
<param name="description">New item to be calculated.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.CreateHeaderBitmap(Syncfusion.Windows.Forms.Grid.GridControlBase,System.Int32,System.Int32)">
<summary>
Creates a header bitmap which used in drag window.
</summary>
<param name="grid">Group bar.</param>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.CreateRedArrowIndicatorBitmap">
<summary>
Creates the arrow indicator which used for indicating the dropping location.
</summary>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.SortColumnWhenRowPivotsOnly(System.Int32,System.Boolean,System.Nullable{System.ComponentModel.ListSortDirection})">
<summary>
Performs the sort operation that specifies the multi-column sort.
</summary>
<param name="columnIndex">Column index.</param>
<param name="multiColumn">Boolean value.</param>
<param name="sortDirection">Sort direction.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GetBackColors">
<summary>
Gets the back color.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GetpaintAttributes(System.Drawing.Brush@,System.Drawing.Pen@)">
<summary>
Gets the pen and brush to paint string in label.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AttachSchema">
<summary>
Attaches the schema with the GridControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.DetachSchema">
<summary>
Detaches the schema with the PivotGrid control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ExpandSchema">
<summary>
Expands the schema in PivotGridControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.collapseLbl_Paint(System.Object,System.Windows.Forms.PaintEventArgs)">
<summary>
Triggers and gets the Paint attributes in the label.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.collapseLbl_Click(System.Object,System.EventArgs)">
<summary>
Triggers and expands the Schema in the PivotGrid control.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AsyncLoadComplete(System.ComponentModel.AsyncCompletedEventArgs)">
<summary>
Triggered when the Asynchronous process is completed.
</summary>
<param name="e">The Event Arguments.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.AsyncLoadStart(System.ComponentModel.CancelEventArgs)">
<summary>
Triggered when the Asynchronous process is started.
</summary>
<param name="e">The Event Arguments.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.internalGrid_ItemSourceChanged(System.Object,Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs)">
<summary>
Triggered when the InternalGrid's ItemSource list changed event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ItemSourceChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.closeImgLbl_MouseLeave(System.Object,System.EventArgs)">
<summary>
Triggered when the close label's mouse leave event is done.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.closeImgLbl_MouseHover(System.Object,System.EventArgs)">
<summary>
Triggered when the close label's mouse hover event is done.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.closeImgLbl_Click(System.Object,System.EventArgs)">
<summary>
Triggered and closes the pop-up window.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PivotValueChooserHeaderPanel_Paint(System.Object,System.Windows.Forms.PaintEventArgs)">
<summary>
Triggered when the panel1 is painted.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableControl_MouseClick(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Customizes the display of pivot value chooser in header.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.contextMenu_Click(System.Object,System.EventArgs)">
<summary>
Triggered and hides or shows the selected column name in pivot value chooser.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableModel_QueryColWidth(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Triggered and gets the column width.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.checkedListBox1_ItemCheck(System.Object,System.Windows.Forms.ItemCheckEventArgs)">
<summary>
Triggered and checks the checked list box items's check state.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.ItemCheckEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableControl_MouseUp(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Triggered when the mouse up event is done.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableControl_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Triggered when the mouse move event is done.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableControl_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Triggered when the mouse down event is done.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableControl_CellButtonClicked(System.Object,Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs)">
<summary>
Triggered when the Table control cell button is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.TableControl_CellClick(System.Object,Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)">
<summary>
Triggered when the table control's cell is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PopupWindow">
<summary>
Represents a Pop-up Window control to display the PivotValueChooser.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PopupWindow.#ctor(System.Windows.Forms.Control)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.PopupWindow"/> class with the specified <see cref="T:System.Windows.Forms.Control"/>.
</summary>
<param name="content">The <see cref="T:System.Windows.Forms.Control"/> instance that provides visual representation.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.themeStyle">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ThemeStyle"/> property.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ThemeStyle">
<summary>
Gets or sets the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle"/> value used to customize the appearance of the <see cref="!:PivotGrid"/>.
</summary>
<remarks>
This ThemeStyle settings will be applied only when the VisualStyleBased theme has been applied to the control.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.GetControlName(System.String)">
<summary>
Helps to apply the ControlName settings in control
</summary>
<param name="controlName">ControlName</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.SetGridHeights">
<summary>
Sets the height of the grids used for internal purpose.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.OnThemeNameChanged(System.String)">
<summary>
Helps to apply the ThemeName settings in control
</summary>
<param name="themeName">ThemeName</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.SetThemeNameForInternalComponents(System.String)">
<summary>
Method is used to set theme name for internal components.
</summary>
<param name="themeName"></param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.OnCanOverrideStyleChanged(System.Boolean)">
<summary>
Helps to apply the CanOverriderStyle settings in control
</summary>
<param name="CanOverriderStyle">CanOverriderStyle</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.OnCanApplyThemeChanged(System.Boolean)">
<summary>
Helps to apply the CanApplyTheme settings in control
</summary>
<param name="CanApplyTheme">CanApplyTheme</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.NamespaceDoc">
<summary>
The Syncfusion.Windows.Forms.PivotAnalysis namespace contains classes that implements Essential PivotGridControl for Windows Forms applications.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlDesigner">
<summary>
Defines the class that extends the design mode functions of the designer.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlDesigner.ActionLists">
<summary>
Gets the value of the Action lists.
</summary>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlDesigner.BuildActionLists">
<summary>
Creates the Action lists.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList">
<summary>
Represents a class to create smart tags in the designer.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.Search">
<summary>
Gets or sets the value of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SearchOptions"/>.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.KeyWord">
<summary>
Gets or sets the value of <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.KeyWord"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.#ctor(System.ComponentModel.IComponent,System.ComponentModel.Design.DesignerVerb[])">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList"/> class with the specific components and designer verbs.
</summary>
<param name="component">Functionality of the components.</param>
<param name="verbs">Array of designer verbs.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.#ctor(System.ComponentModel.IComponent,System.ComponentModel.Design.DesignerVerb[],Syncfusion.Windows.Forms.PivotAnalysis.SearchOptions,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList"/> class with the specific components and designer verbs.
</summary>
<param name="component">Functionality of the components.</param>
<param name="verbs">Array of designer verbs.</param>
<param name="search"></param>
<param name="keyword"></param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.GetSortedActionItems">
<summary>
Returns the collection of <see cref="T:System.ComponentModel.Design.DesignerActionItem"/> objects contained in the list.
</summary>
<returns>
A <see cref="T:System.ComponentModel.Design.DesignerActionItem"/> array that contains the items in this list.
</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.OnSearch">
<summary>
Provides online links for PivotGrid Forum, KnowledgeBase and ug.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.OnViewOnLineDocumentation">
<summary>
Provide UG link.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.OnGoToForums">
<summary>
provide Forum link.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DesignerActionSupportList.OnGoToDirectTrac">
<summary>
Provide directTracLink .
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellModel">
<summary>
Implements the data or model part for the column header cell with sort indicator in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellModel.GetFormattedText(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Object,System.Int32)">
<summary>
Gets the formatted text value.
</summary>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> object that holds the style information of the cell.</param>
<param name="value">The value to format.</param>
<param name="textInfo">TextInfo is a hint that denotes who is calling, default is GridCellBaseTextInfo.DisplayText.</param>
<returns>The formatted text of the given value.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellModel.OnQueryPrefferedClientSize(System.Drawing.Graphics,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridQueryBounds)">
<summary>
Calculates the preferred size of the cell based on its contents without margins and any buttons.
</summary>
<param name="graphics">The graphics context of the canvas.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> that holds the style information of the cell.</param>
<param name="queryBounds">The graphical bounds.</param>
<returns>The optimal size of the cell.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellRenderer">
<summary>
Provides methods used to render the header cell with sort indicator.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class that displays this cell renderer.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class that holds data for this cell renderer that should be shared among views.</param>
<remarks>References to the <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> instances will be saved.</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellRenderer.OnDrawDisplayText(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<override/>
<summary>
Overrides and draws the Display text.
</summary>
<param name="g">The graphics object.</param>
<param name="colIndex">The Column index.</param>
<param name="rowIndex">The Row index.</param>
<param name="style">The Style object that holds the values of the style properties.</param>
<param name="textRectangle">The rectangle bounds of the display text.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridColumnHeaderCellRenderer.OnClick(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<override/>
<summary>
Overrides and raises the OnClick event.
</summary>
<param name="rowIndex">The row index.</param>
<param name="colIndex">The column index.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellModel">
<summary>
Implements the data or model part for the expandable column header cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
The expandable row header cell will display '+' symbol for expanded rows and '-' symbol for collapsed rows similar to a TreeView control.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer">
<summary>
Provides methods used to render the expand cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnLayout(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Drawing.Rectangle,System.Drawing.Rectangle[])">
<summary>
Triggered when the layout of the grid is rendered.
</summary>
<param name="rowIndex">row index value.</param>
<param name="colIndex">column index value.</param>
<param name="style">Stores the information about the cell</param>
<param name="innerBounds">Represents the inner bounds of the rectangle.</param>
<param name="buttonsBounds">Represents the bounds of the rectangle.</param>
<returns>Inner bounds of the layout.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnOutlineCurrentCell(System.Drawing.Graphics,System.Drawing.Rectangle)">
<override/>
<summary>
Triggered when the outline of the current cell is to be drawn.
</summary>
<param name="g">The graphics object.</param>
<param name="r">The rectangle bounds of the current cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnQueryShowButtons(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<override/>
<summary>
Overrides and provides the information regarding the buttons to be displayed or not.
</summary>
<param name="colIndex">The column index.</param>
<param name="rowIndex">The row index.</param>
<param name="style">The Style objects which holds the style properties.</param>
<returns><b>true</b> if the buttons are visible; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnDrawDisplayText(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
This method is called from <see cref="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)"/> to draw the face text of the header cell after
its background has been drawn.
</summary>
<param name="g">Points to the device context.</param>
<param name="textRectangle">Specifies the text rectangle. It is the cell rectangle without buttons, borders, or text margins.</param>
<param name="rowIndex">Specifies the row id.</param>
<param name="colIndex">Specifies the column id.</param>
<param name="style">A reference to the style object of the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnDrawCellBackground(Syncfusion.Windows.Forms.Grid.GridDrawCellBackgroundEventArgs)">
<summary>
Triggered when the background of the cell is drawn.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellBackgroundEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnDrawCellButtonBackground(Syncfusion.Windows.Forms.Grid.GridCellButton,System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Triggered when the background of the cell button is drawn.
</summary>
<param name="button">Used for cell renderer.</param>
<param name="g">GDI+ surfaces.</param>
<param name="rect">Represents the rectangle size and location.</param>
<param name="buttonState">Specifies the appearance of cell.</param>
<param name="style">Stores information about the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnDrawCellButton(Syncfusion.Windows.Forms.Grid.GridCellButton,System.Drawing.Graphics,System.Int32,System.Int32,System.Boolean,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Triggered when the button drawn in the cell.
</summary>
<param name="button">Used to cell renderer.</param>
<param name="g">GDI+ surfaces.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="bActive">Represents boolean value.</param>
<param name="style">Stores information about the cell</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnButtonClicked(System.Int32,System.Int32,System.Int32)">
<summary>
Called when the user clicks on a button inside the cell.
</summary>
<param name="button">The button clicked.</param>
<param name="colIndex">The column index.</param>
<param name="rowIndex">The row index.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.OnPushButtonClick(System.Int32,System.Int32)">
<summary>
Raises <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PushButtonClick"/> event when the user presses the push button.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridExpandCellCellRenderer.MeasureTextRenderer(System.Drawing.Graphics,System.String,System.Drawing.Rectangle,System.Drawing.Font)">
<summary>
Measures the display text.
</summary>
<param name="g">The graphics object.</param>
<param name="displayText">The text to be drawn.</param>
<param name="textRectangle">The rectangle bounds of the display text.</param>
<param name="font">The font of the display text.</param>
<returns>The display text.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellModel">
<summary>
Implements the data or model part for the header cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellModel"/> class.
with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that stores the information of rendered cells.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellModel.OnQueryPrefferedClientSize(System.Drawing.Graphics,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridQueryBounds)">
<summary>
Calculates the preferred size of the cell based on its contents without margins and any buttons.
</summary>
<param name="graphics">The graphics context of the canvas.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> that holds the style information of the cell.</param>
<param name="queryBounds">The graphical bounds.</param>
<returns>The optimal size of the cell.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer">
<summary>
Provides methods used to render header cells.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class that display this cell renderer.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class that holds data for this cell renderer that should be shared among views.</param>
<remarks>References to <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> instances will be saved.</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)">
<override/>
<summary>Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/> event for custom formatting of a cell by changing its style object.</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs"/> instance that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.WireGrid">
<summary>
Sets up mouse event hooks with the grid.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.UnwireGrid">
<summary>
Resets up mouse event hooks with the grid.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.OnDrawCellBackground(Syncfusion.Windows.Forms.Grid.GridDrawCellBackgroundEventArgs)">
<override/>
<summary>
Triggered when the cell back ground is drawn.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellBackgroundEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.OnDrawDisplayText(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
This method is called from <see cref="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)"/> to draw the face text of the header cell after
its background has been drawn.
</summary>
<param name="g">Points to the device context.</param>
<param name="textRectangle">Specifies the text rectangle. It is the cell rectangle without buttons, borders, or text margins.</param>
<param name="rowIndex">Specifies the row id.</param>
<param name="colIndex">Specifies the column id.</param>
<param name="style">A reference to the style object of the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.OnOutlineCurrentCell(System.Drawing.Graphics,System.Drawing.Rectangle)">
<override/>
<summary>
Triggered when the outline of the current cell i to be drawn.
</summary>
<param name="g">Graphics object</param>
<param name="r">Rectangle bounds of the current cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHeaderCellRenderer.MeasureTextRenderer(System.Drawing.Graphics,System.String,System.Drawing.Rectangle,System.Drawing.Font)">
<summary>
Measures the display text.
</summary>
<param name="g">Graphics object.</param>
<param name="displayText">The text to be drawn.</param>
<param name="textRectangle">rectangle bounds of the display text.</param>
<param name="font">Font of the display text.</param>
<returns>The display text.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellModel">
<summary>
Implements the data or model part for the hyperlink cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer">
<summary>
Provides methods used to render the hyperlink cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.VisitedLinkColor">
<summary>
Gets or sets the value for visited link.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.ActiveLinkColor">
<summary>
Gets or sets the value for active link.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.EXEname">
<summary>
Gets or sets the value of browser.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.LaunchBrowser(Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Launches the web browser.
</summary>
<param name="style">cell style</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.OnMouseDown(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Triggered when the mouse down is pressed.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.OnMouseUp(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Triggered when the mouse up is pressed.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.OnCancelMode(System.Int32,System.Int32)">
<summary>
Triggered when the cancel mode is called.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.OnGetCursor(System.Int32,System.Int32)">
<summary>
Triggered when the cursor is rendered.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<returns>Cursor.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.OnHitTest(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs,Syncfusion.Windows.Forms.IMouseController)">
<summary>
Is triggered when the mouse controller is rendered.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">event data</param>
<param name="controller">used to define the interface for mouse controllers.</param>
<returns>Returns 0 if the message is forwarded; Otherwise returns 1 for higher priority controls.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Triggered when the draw is called.
</summary>
<param name="g">GDI+ surface.</param>
<param name="clientRectangle">Represents the rectangle size and location.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">Stores the information about the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.OnMouseHoverEnter(System.Int32,System.Int32)">
<summary>
Triggered when the mouse hover enter is performed.
</summary>
<param name="rowIndex">row index value.</param>
<param name="colIndex">The column index of the current cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.OnMouseHoverLeave(System.Int32,System.Int32,System.EventArgs)">
<summary>
Triggered when the mouse hover leave is performed.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridHyperlinkCellRenderer.DrawLink(System.Boolean,System.Int32,System.Int32)">
<summary>
Draws the hyper link.
</summary>
<param name="useHotColor">Boolean value to determine the usage of HotColor.</param>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellModel">
<summary>
Implements the data or model part for the template cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellRenderer">
<summary>
Provides methods used to render the template cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTemplateCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedRenderer">
<summary>
Renderer class for painting and drawing operations for visual style based theme.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedRenderer.DrawExpandButtonStyle(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle,System.Drawing.Graphics,System.Drawing.Rectangle,System.String)">
<summary>
Method to draw the expander icon.
</summary>
<param name="internalGrid"></param>
<param name="g"></param>
<param name="rect"></param>
<param name="buttonState"></param>
<param name="value"></param>
<param name="v"></param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedRenderer.SetCellValue(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.PivotAnalysis.Base.PivotCellInfo,System.Object)">
<summary>
Sets the CellValue.
</summary>
<param name="styleInfo">Provides style properties of the cell.</param>
<param name="cellInfo">Provides info regarding the specific cell.</param>
<param name="tag">Specifies the cell type.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedRenderer.OnApplyGroupBarStyle(Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs,System.String,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle)">
<summary>
Apply style for group bar items.
</summary>
<param name="e"></param>
<param name="themeStyle"></param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ContextThemeRenderer">
<summary>
Implements the render part of the Context menu.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextThemeRenderer.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextThemeRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)">
<summary>
Overrides and renders the item text.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextThemeRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Overrides and renders the Image margin.
</summary>
<param name="e">THe <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextThemeRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)">
<summary>
Overrides and sets the separator back-color.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextThemeRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
<summary>
Overrides and renders the split button.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuThemeRenderer">
<summary>
Implements the render part of the ContextMenu themed renderer.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuThemeRenderer.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/>.
</summary>
<param name="grid">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> to obtain the visual style.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuThemeRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemImage"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuThemeRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Draws the item background.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooser">
<summary>
Provides methods used to render pivot value chooser.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooser.gridControl">
<summary>
PivotGrid control used as parent of pivot value chooser.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooser.checkedListBox1_ItemCheck(System.Object,System.Windows.Forms.ItemCheckEventArgs)">
<summary>
Triggered and checks the checked list box items's check state.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.ItemCheckEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooser.closeImgLbl_Click(System.Object,System.EventArgs)">
<summary>
Triggered and closes the pop-up window.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooser.PivotValueChooserHeaderPanel_Paint(System.Object,System.Windows.Forms.PaintEventArgs)">
<summary>
Triggered when the panel1 is painted.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer">
<summary>
Provides methods used to render the header cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="gridControlBase">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)">
<summary>
Raises when the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/> event occurs.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnGetCursor(System.Int32,System.Int32)">
<summary>
Overrides and triggers to get cursor.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<returns>Cursor.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnDrawDisplayText(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<override/>
<summary>
Overrides and draws the display text.
</summary>
<param name="g">The graphics object.</param>
<param name="rowIndex">The row index.</param>
<param name="colIndex">The column index.</param>
<param name="style">Style object that holds the values of style properties.</param>
<param name="textRectangle">The rectangle bounds of the display text.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnMouseDown(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggers the mouse down event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnMouseUp(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggers the mouse up event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnDrawCellButton(Syncfusion.Windows.Forms.Grid.GridCellButton,System.Drawing.Graphics,System.Int32,System.Int32,System.Boolean,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Overrides and triggers to draw the cell buttons.
</summary>
<param name="button">Used in the cell renderer.</param>
<param name="g">GDI+ surfaces.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="bActive">Represents the boolean value.</param>
<param name="style">Style object that holds the values of style properties.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnMouseHover(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggers the mouse hover event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnMouseHoverLeave(System.Int32,System.Int32,System.EventArgs)">
<summary>
Overrides and triggers the Mouse hover leave event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.GetFilterIconSize">
<summary>
Gets the size of the filter icon to layout the buttons bound.
</summary>
<returns>the size of the filtericon.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnLayout(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Drawing.Rectangle,System.Drawing.Rectangle[])">
<summary>
Overrides and triggers the OnLayout() method.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">Style object that holds the values of style properties.</param>
<param name="innerBounds">Represents the inner bounds of the rectangle.</param>
<param name="buttonsBounds">Represents the bounds of the cell button.</param>
<returns>Inner bounds of the rectangle.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnButtonClicked(System.Int32,System.Int32,System.Int32)">
<summary>
Called when the user clicks on a button inside the cell.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="button">The button that is clicked.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedHeaderCellRenderer.OnPushButtonClick(System.Int32,System.Int32)">
<summary>
Raises <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PushButtonClick"/> event when the user presses the push button.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedTemplateCellRenderer">
<summary>
Provides methods used to render the template cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedTemplateCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedTemplateCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridThemedTemplateCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer">
<summary>
Provides methods used to render the schema item cell with visual styles.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="gridControl">The grid control that holds the top left cell.</param>
<param name="cellModel">The data or model part of a cell type.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.OnGetCursor(System.Int32,System.Int32)">
<summary>
Changes the cursor for the schema item cell.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<returns>The <see cref="T:System.Windows.Forms.Cursor"/> to be displayed.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.OnMouseHover(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseHover"/> event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.OnMouseHoverLeave(System.Int32,System.Int32,System.EventArgs)">
<summary>
Raises the <see cref="M:Syncfusion.Windows.Forms.Grid.GridCellRendererBase.OnMouseHoverLeave(System.Int32,System.Int32,System.EventArgs)"/> event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.OnDrawCellButton(Syncfusion.Windows.Forms.Grid.GridCellButton,System.Drawing.Graphics,System.Int32,System.Int32,System.Boolean,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the cell button element at the specified row and column index.
</summary>
<param name="button">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellButton" /> to be drawn.</param>
<param name="g">The <see cref="T:System.Drawing.Graphics" /> context of the canvas.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="isActive">True, if this is the active current cell; otherwise, false.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.OnLayout(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Drawing.Rectangle,System.Drawing.Rectangle[])">
<summary>
Calculates the client rectangle given the inner rectangle of a cell and any boundaries of cell buttons.
This method is called from PerformLayout method.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
<param name="innerBounds">The <see cref="T:System.Drawing.Rectangle" /> that contains the inner bounds of the cell.</param>
<param name="buttonsBounds">An array of <see cref="T:System.Drawing.Rectangle" /> that contains the bounds for each cell button element.</param>
<returns>A <see cref="T:System.Drawing.Rectangle" /> with the bounds.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.OnButtonClicked(System.Int32,System.Int32,System.Int32)">
<summary>
Called when the user clicks on a button inside the cell.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="button">The button that is clicked.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemRenderer.OnPushButtonClick(System.Int32,System.Int32)">
<summary>
Raises <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PushButtonClick"/> event when the user presses the push button.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellModel">
<summary>
Implements the data or model part for the top left cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellRenderer">
<summary>
Provides methods used to render the top left cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="gridControl">The grid control that holds the top left cell.</param>
<param name="cellModel">The data or model part of a cell type.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellRenderer.OnOutlineCurrentCell(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Highlights the current cell by inverting the cells border or drawing a thick border.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the cell rectangle.</param>
<remarks>
This method can be overridden to avoid highlighting cells.
</remarks>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellRenderer.OnClick(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Called when the user clicks inside a cell.
</summary>
<param name="rowIndex">The row index.</param>
<param name="colIndex">The column index.</param>
<param name="args">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.TopLeftCellRenderer.ProcessKeyEventArgs(System.Windows.Forms.Message@)">
<summary>
Allows to process keyboard events before the <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> gets the actual KeyDown / KeyUp event.
</summary>
<param name="message">The <see cref="T:System.Windows.Forms.Message" /> containing the data of the keyboard event.</param>
<returns><b>true</b> if the key is handled; otherwise, <b>false</b>.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar">
<summary>
Represents a control that groups the row items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlBase"/>.
</summary>
<param name="pivotGrid">The pivot grid control that holds the row group bar.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.GridControl">
<summary>
Gets the parent <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.ColIndexToField(System.Int32)">
<summary>
Converts the corresponding column index to field index.
</summary>
<param name="colIndex">The column index.</param>
<returns>The field index.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.Invalidate">
<summary>
Invalidates the entire surface of the control and causes the control to be redrawn.
</summary>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.InitiateProcessKeyEventArgs(System.Windows.Forms.Message@)">
<summary>
Processes a key message and generates the appropriate control events.
</summary>
<param name="m">Window message to process.</param>
<returns>If<b>True</b>The message will be processed by the control;Otherwise<b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OpenDragHeader">
<summary>
Opens the created drag window and initiates the painting in drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.UpdateDragHeader">
<summary>
Updates the DragWindow to the current mouse position.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.CloseDragHeader">
<summary>
Closes the drag window which usually done in mouse up event is done.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.GetDragWindowLocation(System.Drawing.Point)">
<summary>
Gets the location of the drag window.
</summary>
<returns>Point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OpenRedArrowIndicator">
<summary>
Opens the created arrow bitmap and initiates the painting in drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.UpdateRedArrowIndicatorBitmap(System.Drawing.Point)">
<summary>
Updates the arrow bitmap to the current location of drag window.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.CloseRedArrowIndicator">
<summary>
Closes the indicator which usually done at mouse up event is done.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.ApplySize">
<summary>
Helper function which is used to apply the size of the cells in the RowGroupBar. An alternate solution to avoid events.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.ApplyItems">
<summary>
Helper function which is used to apply the value to the cells in the GroupBar. An alternate solution to avoid events.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.WndProc(System.Windows.Forms.Message@)">
<exclude/>
<internalonly/>
<summary>
An application-defined function that processes messages sent to a window.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Invoked when the user moves the mouse.
</summary>
<param name="e">An <see cref="T:System.Windows.Form.MouseEventArgs" /> that contains the event data.</param>
<override />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Invoked when the user releases the mouse click.
</summary>
<param name="e">An <see cref="T:System.Windows.Form.MouseEventArgs" /> that contains the event data.</param>
<override />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Invoked when the user performs the mouse click.
</summary>
<param name="e">An <see cref="T:System.Windows.Form.MouseEventArgs" /> that contains the event data.</param>
<override />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OnQueryRowHeight(Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControl.QueryRowHeight" /> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs" /> that contains the event data.</param>
<override />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OnDrawCellDisplayText(Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.DrawCellDisplayText" /> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellDisplayTextEventArgs" /> that contains the event data.</param>
<override />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OnQueryCellInfo(Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControl.QueryCellInfo" /> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs" /> that contains the event data.</param>
<override />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
Raises the <see cref="T:System.Windows.Forms.Control.KeyDown" /> event.
</summary>
<param name="e">An <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
<override />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.RowGroupBar_CellButtonClicked(System.Object,Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs)">
<summary>
Triggered when the cell button of the row bar is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The<see cref="T:Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.popupControlContainer1_CloseUp(System.Object,Syncfusion.Windows.Forms.PopupClosedEventArgs)">
<summary>
Triggered when the pop-up container is closed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.PopupClosedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.RowGroupBar_CellClick(System.Object,Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)">
<summary>
Triggered when sorting is performed in row group bar's cell clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.Sort(System.Int32,System.Int32,System.Int32)">
<summary>
Performs the sort operations.
</summary>
<param name="colIndex">The column index of the current cell.</param>
<param name="sortIndex">Index to be moved.</param>
<param name="rowIndex">The row index of current cell</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.CreateHeaderBitmap(Syncfusion.Windows.Forms.Grid.GridControlBase,System.Int32,System.Int32)">
<summary>
Creates a header bitmap which is used in drag window.
</summary>
<param name="grid">Group bar</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.CreateRedArrowIndicatorBitmap">
<summary>
Creates the arrow indicator which used for indicating the dropping location.
</summary>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.PivotCalculations_CollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the pivot calculation's collection is changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.RowGroupBar.WireGrid">
<summary>
Wires GroupBar to the Grid.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellModel">
<summary>
Implements the data or model part for the total cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellRenderer">
<summary>
Provides methods used to render the total cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="grid">The instance of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellRenderer.OnOutlineCurrentCell(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Triggered when the outline of the current cell is rendered.
</summary>
<param name="g">GDI+ surface.</param>
<param name="r">Represents the location and size of the rectangle.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellRenderer.OnClick(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Triggered when the click is called.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellRenderer.OnDrawCellBackground(Syncfusion.Windows.Forms.Grid.GridDrawCellBackgroundEventArgs)">
<summary>
Triggered when the cell background is drawn.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellBackgroundEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellModel">
<summary>
Implements the data or model part for the total value cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellRenderer">
<summary>
Provides methods used to render the total value cell.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellRenderer.OnOutlineCurrentCell(System.Drawing.Graphics,System.Drawing.Rectangle)">
<summary>
Triggered when the outline of the cell is rendered.
</summary>
<param name="g">GDI+ surfaces.</param>
<param name="r">Represents the rectangle points</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellRenderer.OnClick(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Triggered when the renderer is clicked.
</summary>
<param name="rowIndex">Row index.</param>
<param name="colIndex">Column index.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellRenderer.OnDrawCellBackground(Syncfusion.Windows.Forms.Grid.GridDrawCellBackgroundEventArgs)">
<summary>
Triggered when the background of the cell is drawn.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridDrawCellBackgroundEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTotalValueCellRenderer.DrawBackground(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Boolean)">
<summary>
Triggered when the background of the grid is drawn.
</summary>
<param name="g">GDI+ surfaces.</param>
<param name="rect">Represents the rectangle points</param>
<param name="style">Stores the information about cell.</param>
<param name="fillBackground">Represents the boolean value.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellButton">
<summary>
Defines a cell button element that looks like a + and - button for expanding and collapsing nodes in a tree.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellButton.#ctor(Syncfusion.Windows.Forms.Grid.GridCellRendererBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellButton"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellRendererBase"/>.
</summary>
<param name="control">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellRendererBase"/> class that draws this cell button element.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellButton.Draw(System.Drawing.Graphics,System.Int32,System.Int32,System.Boolean,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<override/>
<summary>
Draws the cell button element at the specified row and column index.
</summary>
<param name="g">The <see cref="T:System.Drawing.Graphics"/> context of the canvas.</param>
<param name="rowIndex">The row index.</param>
<param name="colIndex">The column index.</param>
<param name="bActive">True if this is the active current cell; False otherwise.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> object that holds cell information.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellModel">
<summary>
Implements the data or model part for the expandable row header cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
The expandable row header cell will display '+' symbol for expanded rows and '-' symbol for collapsed rows similar to a TreeView control.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellModel"/> class with the specified instances of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> class.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellModel.OnQueryPrefferedClientSize(System.Drawing.Graphics,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridQueryBounds)">
<summary>
Calculates the preferred size of the cell based on its contents without margins and any buttons.
</summary>
<param name="graphics">The graphics context of the canvas.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> that holds the style information of the cell.</param>
<param name="queryBounds">The graphical bounds.</param>
<returns>The optimal size of the cell.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellRenderer">
<summary>
Implements the renderer part for an expandable row header cell in a <see cref="T:Syncfusion.Windows.Forms.Grid.GridDataBoundGrid"/>.
The expandable row header cell will display a '+' for expanded rows and a '-' for collapsed rows similar to a TreeControl.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class that displays this cell renderer.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class that holds data for this cell renderer that should be shared among views.</param>
<remarks>References to <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> will be saved.</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellRenderer.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)">
<override/>
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs"/> instance holds the event data.</param>
<remarks>
<see cref="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellRenderer.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)"/> is called from <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/>
in order to allow custom formatting of a cell by changing its style object.
<para/>
Set the cancel property true if you want to avoid
the associated cell renderer object <see cref="M:Syncfusion.Windows.Forms.Grid.GridCellRendererBase.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)"/>
method to be called.<para/>
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.<para/>
Changes to the style object done at this time will also not be reflected when accessing
cells though the models indexer. See <see cref="E:Syncfusion.Windows.Forms.Grid.GridModel.QueryCellInfo"/>.<para/>
<note type="note">Do not change base style or cell type at this time.</note>
</remarks>
<seealso cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventHandler"/>
<seealso cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowExpandCellRenderer.OnLayout(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Drawing.Rectangle,System.Drawing.Rectangle[])">
<summary>
This method is called from PerformLayout to calculate the client rectangle given
the inner rectangle of a cell and any boundaries of cell buttons.
</summary>
<param name="rowIndex">The row index.</param>
<param name="colIndex">The column index.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> object that holds cell information.</param>
<param name="innerBounds">The <see cref="T:System.Drawing.Rectangle"/> with the inner bounds of a cell.</param>
<param name="buttonsBounds">An array of <see cref="T:System.Drawing.Rectangle"/> with bounds for each cell button element.</param>
<returns>
A <see cref="T:System.Drawing.Rectangle"/> with the bounds.
</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellModel">
<summary>
Implements the data or model part for the header cell with sort indicator in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellModel"/> with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instances of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellModel"/> with the specified serialization information and streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellModel.GetFormattedText(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Object,System.Int32)">
<summary>
Gets the formatted text value.
</summary>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> object that holds the style information of the cell.</param>
<param name="value">The value to format.</param>
<param name="textInfo">TextInfo is a hint that denotes who is calling, default is GridCellBaseTextInfo.DisplayText.</param>
<returns>The formatted text of the given value.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a renderer for this cell model.
</summary>
<param name="control">The grid control that holds the corresponding cell.</param>
<returns>The renderer for this cell model.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellModel.OnQueryPrefferedClientSize(System.Drawing.Graphics,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridQueryBounds)">
<summary>
Calculates the preferred size of the cell based on its contents without margins and any buttons.
</summary>
<param name="graphics">The graphics context of the canvas.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> that holds the style information of the cell.</param>
<param name="queryBounds">The graphical bounds.</param>
<returns>The optimal size of the cell.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer">
<summary>
Implements the CellRenderer for the PivotRowHeaderCellModel.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="gridControlBase">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/> event.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs"/> contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnGetCursor(System.Int32,System.Int32)">
<summary>
Overridden to change the cursor for this PivotRowHeaderCell.
</summary>
<param name="rowIndex">Row index of the cell.</param>
<param name="colIndex">Column index of the cell.</param>
<returns>Returns the cursor.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnDrawDisplayText(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Overridden to draw the cell text.
</summary>
<param name="g">Graphics associated with this control.</param>
<param name="textRectangle">Text rectangle of this cell.</param>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="style">Style information associated with this cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnMouseDown(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overridden to invalidate the mouse-down cell-range.
</summary>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnMouseUp(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overridden to invalidate the clicked header cell-range.
</summary>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnClick(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overridden to suppress the click event.
</summary>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnDrawCellButton(Syncfusion.Windows.Forms.Grid.GridCellButton,System.Drawing.Graphics,System.Int32,System.Int32,System.Boolean,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Overridden to draw the button for this cell.
</summary>
<param name="button">Instance of the grid cell button to be drawn.</param>
<param name="g">Graphics associated with this control.</param>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="bActive">Boolean value.</param>
<param name="style">Style information of this cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnMouseHover(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overridden to invalidate the cell when mouse hovered over the cell.
</summary>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnMouseHoverLeave(System.Int32,System.Int32,System.EventArgs)">
<summary>
Overridden to invalidate get the hovered range of cells in grid.
</summary>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnLayout(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Drawing.Rectangle,System.Drawing.Rectangle[])">
<summary>
Overridden to prepare the layout appearance of the cell.
</summary>
<param name="rowIndex">RowIndex of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="style">Style information of the cell.</param>
<param name="innerBounds">Inner text rectangle area.</param>
<param name="buttonsBounds">Button bounds for the associated button in control.</param>
<returns>The inner bounds of the cell.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnButtonClicked(System.Int32,System.Int32,System.Int32)">
<summary>
Called when the user clicks on a button inside the cell.
</summary>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="button">Clicked button.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnPushButtonClick(System.Int32,System.Int32)">
<summary>
Raises <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PushButtonClick"/> event when the user presses the push button.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.OnDrawCellButton(Syncfusion.Windows.Forms.Grid.GridCellButton,System.Drawing.Graphics,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Overridden to draw the button for this cell.
</summary>
<param name="button">Instance of the grid cell button to be drawn.</param>
<param name="g">Graphics associated with this control.</param>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="style">Style information of this cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.IsHeaderHot(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Determines whether the header is in the hot state or not.
</summary>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="style">Style information of this cell.</param>
<returns><b>true</b> if the header hot property is applied; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotRowHeaderCellRenderer.IsHeaderPressed(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Determines whether the header is in pressed state or not.
</summary>
<param name="rowIndex">Row index of this cell in grid.</param>
<param name="colIndex">Column index of this cell in grid.</param>
<param name="style">Style information of this cell.</param>
<returns><b>true</b> if the header is pressed; otherwise, <b>false</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.NativeMethods">
<summary>
Represents a class for declaring the constants of the native-methods.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.NativeMethods.AnimationFlags">
<summary>
Defines the constants that specifies the animation of the window.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.NativeMethods.IsRunningOnMono">
<summary>
Gets a value indicating whether the running mode of the application is 'Mono' or not.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.NativeMethods.MINMAXINFO">
<summary>
Used internally.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilter">
<summary>
Represents the control class for PivotCalculationFilter.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilter"/> class.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilter.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilter.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilter.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper">
<summary>
Represents a class that defines the helper methods for the PivotCalculationFilter.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.inItemCheck">
<summary>
Indicates the check box checking.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper"/>. class
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.Dispose">
<summary>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ShowContextMenu(System.Windows.Forms.Control,System.Boolean,System.Drawing.Point)">
<summary>
Displays the filter drop-down.
</summary>
<param name="control">The parent control of the pop-up.</param>
<param name="showContext">Boolean value to show the pop-up.</param>
<param name="location">Location of the pop-up.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.SetItemsToCheckedListBox(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl,System.Int32,System.Int32)">
<summary>
Sets the checked list items in the drop down filter.
</summary>
<param name="pivot">Pivot grid control.</param>
<param name="rowIndex">The row index.</param>
<param name="index">The column index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.InitializePivotCalculationFilter">
<summary>
Initializes the PivotCalculationFilter.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.InitializeThemedPivotCalculationFilter">
<summary>
Initializes the PivotCalculationFilter.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.searchImage_Click(System.Object,System.EventArgs)">
<summary>
Triggered when the click on Search image is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.pivotCalcContextStrip_Opening(System.Object,System.ComponentModel.CancelEventArgs)">
<summary>
Triggered when the Context strip is opening.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.searchTextBox_TextChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the text in the search text box gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.checkedListBoxClear">
<summary>
Clears and inserts the select all item to the checked-list item collection.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.sortingLogic">
<summary>
Sorting customization for the elements to be added to the checekedListBox.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.okButton_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
<summary>
Triggered when the OK button is Mouse down.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.pivotCalcContextStrip_Closing(System.Object,System.Windows.Forms.ToolStripDropDownClosingEventArgs)">
<summary>
Triggered while adding the filtered items to the checkedListBox when the filter pop-up is closed unanimously.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripDropDownClosingEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.searchImage_MouseHover(System.Object,System.EventArgs)">
<summary>
Triggered when the mouse hover is event is done.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.searchImage_MouseLeave(System.Object,System.EventArgs)">
<summary>
Triggered when the mouse hover leave event is done.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.cancelButton_Click(System.Object,System.EventArgs)">
<summary>
Triggered when the CANCEL button is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.searchPanel_Resize(System.Object,System.EventArgs)">
<summary>
Triggered when the search panel is re-sized and to redraw custom border drawn in paint event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.searchPanel_Paint(System.Object,System.Windows.Forms.PaintEventArgs)">
<summary>
Triggered when the search panel is painted and draw the custom border color for the search panel.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data."/</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.SetLocalizedContextMenuItems">
<summary>
Sets the localized values for the filter drop-down.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.InitializeContextMenuItems">
<summary>
Initializes the contextMenu Items and creates the custom renderer for contextMenustrip.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.CustomItemSelection_Click(System.Object,System.EventArgs)">
<summary>
Performs filtering based on the checked items in the CheckedListBox.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.okButton_Click(System.Object,System.EventArgs)">
<summary>
Triggered when the OK-button is clicked in the custom dialog window.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.TableModel_QueryRowHeight(System.Object,Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Triggered and gets info regarding the row height of filtered rows for PivotCalculation.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.checkedListBox1_ItemCheck(System.Object,System.Windows.Forms.ItemCheckEventArgs)">
<summary>
Triggered when the checked list box items's check state changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e"></param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.setCheckBoxState">
<summary>
Set the checkbox state to 'select all' option.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer">
<summary>
Implements the render part of the Context menu.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)">
<summary>
Overrides and renders the item text.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Overrides and renders the Image margin.
</summary>
<param name="e">THe <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs)">
<summary>
Overrides and renders the arrow.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripArrowRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)">
<summary>
Overrides and sets the separator back-color.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
<summary>
Overrides and renders the split button.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripper">
<summary>
Customizes the look and feel of the context menu-stripper.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripper.WndProc(System.Windows.Forms.Message@)">
<summary>
Renderer of the context menu strip to process the resizing of the context menu strip.
</summary>
<param name="m">Windows message.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors">
<summary>
Represents a class that specifies the custom colors to Context menu strippers.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors.MenuItemSelected">
<summary>
Gets the color of the custom MenuItemSelected color for the ContextMenuStrip.
</summary>
<override/>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors.MenuItemSelectedGradientBegin">
<summary>
Gets the color of the custom MenuItemSelectedGradientBegin color for the ContextMenuStrip.
</summary>
<override/>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors.MenuItemSelectedGradientEnd">
<summary>
Gets the value of custom MenuItemSelectedGradientEnd color for the ContextMenuStrip.
</summary>
<override/>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors.MenuItemBorder">
<summary>
Gets the color of the custom MenuItemBorder color for the ContextMenuStrip.
</summary>
<override/>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors.MenuBorder">
<summary>
Gets the color of custom MenuBorder color for the ContextMenuStrip.
</summary>
<override/>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors.CheckBackground">
<summary>
Gets the color of custom CheckBackground color for the ContextMenuStrip.
</summary>
<override/>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors.CheckPressedBackground">
<summary>
Gets the color of the custom CheckPressedBackground color for the ContextMenuStrip.
</summary>
<override/>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCalculationFilterHelper.ContextMenuStripperColors.CheckSelectedBackground">
<summary>
Gets the color the custom CheckSelectedBackground color for the ContextMenuStrip.
</summary>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterItemComparer">
<summary>
Comparer class for arranging the filter items displayed in calculation filter popup.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterItemComparer.Compare(System.String,System.String)">
<summary>
Compare method to sort the values.
</summary>
<param name="x"> The first string.</param>
<param name="y">The second string.</param>
<returns></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup">
<summary>
Represents the class of a pop-up window.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.Redraw">
<summary>
Represents the boolean value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.#ctor(System.Windows.Forms.Control,System.Drawing.Size)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup"/> class with the specified <see cref="T:System.Windows.Forms.Control"/> instance and size of the control window.
</summary>
<param name="content">The instance of <see cref="T:System.Windows.Forms.Control"/> class.</param>
<param name="defaultSize">The default size value.</param>
<remarks>
Pop-up will be disposed immediately after disposing of the content control.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.UserControl">
<summary>
Gets or sets the value of inner userControl of the pop-up.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.FocusOnOpen">
<summary>
Gets or sets a value indicating whether the content should receive the focus or not after the pop-up has been opened.
</summary>
<value><b>true</b> if the content should be focused after the pop-up has been opened; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
<remarks>If the FocusOnOpen property is set to <c>false</c>, then pop-up cannot use the fade effect.</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.AcceptAlt">
<summary>
Gets or sets a value indicating whether pressing the alt key should close the pop-up or not.
</summary>
<value><b>true</b> if pressing the alt key does not close the pop-up; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.Resizable">
<summary>
Gets or sets a value indicating whether the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup" /> is re-sizable or not.
</summary>
<value><b>true</b> if the re-sizing can be done; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.NonInteractive">
<summary>
Gets or sets a value indicating whether the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup"/> instance acts like a transparent window or not.
</summary>
<value><b>true</b> if the pop-up is non-interactive; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
<remarks>
If the property is set to 'False', then interaction is made, like clicking.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.MinimumSize">
<summary>
Gets or sets the value of minimum <see cref="T:System.Drawing.Size"/> value of the pop-up.
</summary>
<returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.MaximumSize">
<summary>
Gets or sets the value of maximum <see cref="T:System.Drawing.Size"/> value of the pop-up.
</summary>
<returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.CreateParams">
<summary>
Gets the value of parameters of a new window.
</summary>
<returns>An object of type <see cref="T:System.Windows.Forms.CreateParams" /> used when creating a new window.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.Show(System.Windows.Forms.Control)">
<summary>
Shows the pop-up window below the specified control.
</summary>
<param name="control">The control below which the pop-up will be shown.</param>
<remarks>
When there is no space below the specified control, the pop-up control is shown above it.
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="control"/> is <code>null</code>.</exception>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.ProcessResizing(System.Windows.Forms.Message@)">
<summary>
Determines whether to process the resizing messages or not.
</summary>
<param name="m">The message.</param>
<returns><b>true</b> if the WndProc method from the base class shouldn't be invoked; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.Show(System.Drawing.Rectangle)">
<summary>
Shows the pop-up window below the specified area.
</summary>
<param name="area">The area of desktop below which the pop-up will be shown.</param>
<remarks>
When there is no space below specified area, the pop-up control is shown above it.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.Show(System.Windows.Forms.Control,System.Drawing.Rectangle)">
<summary>
Shows the pop-up window below the specified area of the specified control.
</summary>
<param name="control">The control used to compute screen location of specified area.</param>
<param name="area">The area of control below which the pop-up will be shown.</param>
<remarks>
When there is no space below specified area, the pop-up control is shown above it.
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="control"/> is <code>null</code>.</exception>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.PaintSizeGrip(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints the sizing grip.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs" /> instance containing the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
Overrides and Processes a dialog box key.
</summary>
<param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
<returns>
If<b>True</b>the key was processed by the control; otherwise, <b>false</b>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.UpdateRegion">
<exclude/>
<summary>
Updates the pop-up region.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.OnSizeChanged(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.SizeChanged" /> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.OnLayout(System.Windows.Forms.LayoutEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.OnOpening(System.ComponentModel.CancelEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Opening" /> event.
</summary>
<param name="e">The <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.OnOpened(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Opened" /> event.
</summary>
<param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closed"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripDropDownClosedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.OnClosing(System.Windows.Forms.ToolStripDropDownClosingEventArgs)">
<summary>
Overrides and triggered when the closing event is called.
</summary>
<param name="e">event data</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.WndProc(System.Windows.Forms.Message@)">
<summary>
Overrides and processes the Windows messages.
</summary>
<param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.SetOwnerItem(System.Windows.Forms.Control)">
<summary>
Sets the control with the Owner.
</summary>
<param name="control">The Control.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.OnNcHitTest(System.Windows.Forms.Message@,System.Boolean)">
<summary>
Determines whether to handle the Native methods or not.
</summary>
<param name="m">The message.</param>
<param name="contentControl">Boolean value.</param>
<returns>Boolean value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.content_Paint(System.Object,System.Windows.Forms.PaintEventArgs)">
<summary>
Triggered when the control is painted.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.content_RegionChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the control's region gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.content_Disposed(System.Object,System.EventArgs)">
<summary>
Triggered when the control is undergone GarbageCollection()
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotFilterPopup.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds">
<summary>
Represents the property information about the grip-bounds.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.#ctor(System.Drawing.Rectangle)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds"/> struct with the specific rectangle value.
</summary>
<param name="clientRectangle">Client rectangle of the grip-bounds.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.ClientRectangle">
<summary>
Gets the <see cref="T:System.Drawing.Rectangle"/> value of grip-bounds.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.Bottom">
<summary>
Gets the bottom <see cref="T:System.Drawing.Rectangle"/> value of the GripBounds.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.BottomRight">
<summary>
Gets the bottom-right <see cref="T:System.Drawing.Rectangle"/> value of the GripBounds.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.Top">
<summary>
Gets the top <see cref="T:System.Drawing.Rectangle"/> value of the GripBounds.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.TopRight">
<summary>
Gets the top-right <see cref="T:System.Drawing.Rectangle"/> value of the GripBounds.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.Left">
<summary>
Gets the left <see cref="T:System.Drawing.Rectangle"/> value of the GripBounds.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.BottomLeft">
<summary>
Gets the bottom-left <see cref="T:System.Drawing.Rectangle"/> value of the GripBounds.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.Right">
<summary>
Gets the right <see cref="T:System.Drawing.Rectangle"/> value of the GripBounds.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GripBounds.TopLeft">
<summary>
Gets the top-left <see cref="T:System.Drawing.Rectangle"/> value of the GripBounds.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper">
<exclude/>
<summary>
Contains methods to drag and drop elements in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<param name="grid">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> that holds drag and drop operation.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotFilters(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Int32,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Handles to drop the item in the FilterCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
<param name="dragIndex">Represents the drag index value.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropInTableFieldList(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Int32,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Removes the item from the pivot collections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
<param name="dragIndex">Indicates the dragging index of the grid.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.AssignItemLists">
<summary>
Assigns the dictionaries with the pivot items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.PopulateItemCollectionLists">
<summary>
Populates the dictionaries with the pivot items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.GetSchemaContainer(System.Drawing.Point)">
<summary>
Gets the schema sub item for the corresponding point.
</summary>
<param name="location">The location of the item.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotRows(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Handles to drop the item in the PivotRowCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
<param name="dragIndex">Indicates the drag index.</param>
<param name="dropIndex">Indicates the drop index.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotColumns(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Handles to drop the item in the PivotColumnCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
<param name="dragIndex">Indicates the dragging index of the grid.</param>
<param name="dropIndex">Indicates the dropping index of the grid.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotCalculations(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Handles to drop the item in the PivotCalculationCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="dragIndex">Represents the drag index value.</param>
<param name="dropIndex">Represents the drop index value.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.InterChangeItems(System.Int32,System.Int32,System.String)">
<summary>
Determines to Interchange the order of items within the same collection.
</summary>
<param name="dragIndex">Index where the item was dragged.</param>
<param name="dropIndex">Index where the item was dropped.</param>
<param name="collection">Dropped collection.</param>
<returns><b>true</b> if the interchange is done properly; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotRows(Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Handles to drop the item in the PivotRowCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotColumns(Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Handles to drop the item in the PivotColumnCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">sHolds the values of style properties for the cell/item to be dropped.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotCalculations(Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Handles to drop the item in the PivotCalculationCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotFilters(Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Handles to drop the item in the FilterCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropInTableFieldList(Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Removes the item from the pivot collections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotRows(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Handles to drop the item in the PivotRowCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotColumns(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Handles to drop the item in the PivotColumnCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotCalculations(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Handles to drop the item in the PivotCalculationCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropinPivotFilters(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Handles to drop the item in the FilterCollections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.DropInTableFieldList(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Removes the item from the pivot collections. Updates the layout of the Grid and Schema with the changes after modification in the PivotCollections.
</summary>
<param name="style">Holds the values of style properties for the cell/item to be dropped.</param>
<param name="sourceControl">Location of the item where it was dragged.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.NavigateUp(System.String,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Navigates the item to up one position using context menu.
</summary>
<param name="selectedItemStyle">Holds the values of style properties.</param>
<param name="tag">The item to be navigated.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.NavigateDown(System.String,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Navigates the item to down one position using context menu.
</summary>
<param name="selectedItemStyle">Holds the values of style properties.</param>
<param name="tag">The item to be navigated.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.NavigateBeginning(System.String,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Navigates the item to top position using context menu.
</summary>
<param name="selectedItemStyle">Holds the values of style properties.</param>
<param name="tag">The item to be navigated.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.NavigateEnd(System.String,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Navigates the item to bottom position using context menu.
</summary>
<param name="selectedItemStyle">Holds the values of style properties.</param>
<param name="tag">The item to be navigated.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.Remove(System.String,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Removes the item from the collection.
</summary>
<param name="selectedItemStyle">Holds the values of style properties.</param>
<param name="tag">The item to be removed.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.RefreshGridSchemaLayout">
<summary>
Refreshes PivotGridControl along with schema designer.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.RefreshLayout">
<summary>
Refreshes PivotGridControl along with its sub controls except schema designer.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.UpdateFilterList(Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Updates the field list when removing the filtered items.
</summary>
<param name="selectedItemStyle">The grid style info.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.GetGroupMeanRange">
<summary>
Returns the Groups mean range.
</summary>
<returns>Mean range of the group.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.GetGroupColumnMaxRange">
<summary>
Returns the column count of grid.
</summary>
<returns>Column count.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.GetPivotItem(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.PivotAnalysis.Base.PivotItem@,Syncfusion.PivotAnalysis.Base.PivotItem@,Syncfusion.PivotAnalysis.Base.PivotComputationInfo@,Syncfusion.PivotAnalysis.Base.FilterExpression@,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Int32[],System.Object[])">
<summary>
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.
</summary>
<param name="style">Holds the values of the style properties.</param>
<param name="arrayItems">Values store in the array.</param>
<param name="rowItem">Row pivot item.</param>
<param name="colItem">Column pivot item.</param>
<param name="compItem">Pivot computational info.</param>
<param name="exp">Filter expression.</param>
<param name="indices">Integer array.</param>
<param name="sourceControl">this.GridControl.</param>
<returns>Returns True.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.RemoveRowPivotFiltering">
<summary>
WF-19699 - Removes the row pivot filtering while interchanging the data between pivot rows and pivot calculations.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.IsPivotRowsExist(System.String)">
<summary>
Checks whether the passed key value of PivotRows matches the FieldHeader or FieldMappingName.
</summary>
<param name="value">Key Value to be matched with the FieldMappingName or FieldHeader.</param>
<returns><b>true</b> if the pivot rows exists; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.IsPivotColumnsExist(System.String)">
<summary>
Checks whether the passed key value of PivotColumns matches the FieldHeader/FieldMappingName.
</summary>
<param name="value">Key Value to be matched with the FieldMappingName/FieldHeader.</param>
<returns><b>true</b> if the specified value is a pivot column; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.PivotCalculationExist(System.String)">
<summary>
Checks whether the passed key value of PivotCalculation matches the FieldHeader or FieldMappingName.
</summary>
<param name="value">Key Value to be matched with the FieldMappingName or FieldHeader.</param>
<returns><b>true</b> if the calculations exists; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.DragDropHelper.ResetItemLists">
<summary>
Resets the item collection dictionaries.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GridList">
<summary>
Represents a list control, which displays a collection of items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GridList"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GridList.SelectionColor">
<summary>
Gets or sets the selection color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GridList.HasCheckBox">
<summary>
Gets or sets a value indicating whether the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GridList"/> has a check box or not for a single cell on each row.
</summary>
<value><b>true</b> if the check box is set; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GridList.HasPaddedRow">
<summary>
Gets or sets a value indicating whether the padded row is set at the top of the grid or not.
</summary>
<value><b>true</b> if the padded row is set; otherwise, <b>false</b>. The default value is <b>false</b>.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GridList.Context">
<summary>
Gets the value of the <see cref="T:System.Windows.Forms.ContextMenuStrip"/> control.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GridList.Item(System.Int32)">
<summary>
Gets the value of either the <see cref="P:Syncfusion.Windows.Forms.Grid.GridStyleInfo.Description"/> or <see cref="P:Syncfusion.Windows.Forms.Grid.GridStyleInfo.Text"/> property value.
based on the value of isFieldsGrid property.
</summary>
<param name="index">The 1-based row index.</param>
<returns>A string holding either the description or the text of the cell.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.ApplyAction(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Object,System.String)">
<summary>
Applies the corresponding action triggered by the context menu.
</summary>
<param name="selectedItemStyle">Holds the values for style properties.</param>
<param name="tag">The tag.</param>
<param name="action">The action to be performed.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.CloseRedArrowIndicator">
<summary>
Closes the indicator which usually done at mouse up.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OpenRedArrowIndicator(System.Drawing.Point)">
<summary>
Opens the created arrow bitmap and initiates the painting in drag operation.
</summary>
<param name="location">The location of the red arrow indicator.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.UpdateRedArrowIndicatorBitmap(System.Drawing.Point)">
<summary>
Updates the arrow bitmap to the current location of drag window.
</summary>
<param name="location">THe location of the red arrow indicator.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OpenDragHeader">
<summary>
Opens the created drag window and initiates the painting in drag operation.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.UpdateDragHeader">
<summary>
Updates the DragWindow to the current mouse position.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.CloseDragHeader">
<summary>
Closes the drag window which usually done in mouse up event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.GetDragWindowLocation(System.Drawing.Point)">
<summary>
Gets the location of the drag window.
</summary>
<returns>Point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OnMouseEnter(System.EventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseEnter"/> event.
</summary>
<param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseUp"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseMove"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseDown"/> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OnQueryColWidth(Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControl.QueryColWidth" /> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs" /> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OnCellDoubleClick(Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.CellClick"/> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs" /> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
<summary>Processes a command key.</summary>
<param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys"/> values.</param>
<param name="msg">A <see cref="T:System.Windows.Forms.Message"/>, passed by reference, that represents the window message to process.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs" /> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.GetSelectionColor">
<summary>
Gets the selection color based on the themes applied.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.CreateRedArrowIndicatorBitmap">
<summary>
Creates the arrow indicator which used for indicating the dropping location.
</summary>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.CreateHeaderBitmap(Syncfusion.Windows.Forms.Grid.GridControlBase,System.Int32,System.Int32)">
<summary>
Creates a header bitmap for drag window.
</summary>
<param name="colIndex">Column index.</param>
<param name="grid">The GRidControl.</param>
<param name="rowIndex">Row index.</param>
<returns>Bitmap.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.QueryContextMenuItems(System.Windows.Forms.ContextMenuStrip,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Updates the items of the context menu items.
</summary>
<param name="contextMenuStrip">A shortcut menu.</param>
<param name="sty">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> instance that holds the style property values.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.GetControlBase(System.String)">
<summary>
Returns the control base for the corresponding tags.
</summary>
<param name="tag">The tag to obtain the control.</param>
<returns>The corresponding <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> control for the specified tag.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.GridList_CellButtonClicked(System.Object,Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs)">
<summary>
Triggered when the GridList cell button is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellButtonClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GridList.cMenu_ItemClicked(System.Object,System.Windows.Forms.ToolStripItemClickedEventArgs)">
<summary>
Triggered when the shortcut menu item is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuRenderer">
<summary>
Provides methods used to render a <see cref="T:System.Windows.Forms.ContextMenuStrip"/> control with visual styles.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/>.
</summary>
<param name="grid">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> to obtain the visual style.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemImage"/> event.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ContextMenuRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
<summary>
Draws the item background.
</summary>
<param name="e">The <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo">
<summary>
Represents a class that displays the Pivot computational info.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.ScaleFactor">
<summary>
Gets the scale factor based on current DPI.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.WireCompInfo(Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Binds the items with the values.
</summary>
<param name="grid">The PivotGrid control.</param>
<param name="style">Style object that holds the values of styles properties.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.SetBaseItems">
<summary>
Sets the collection for base item combobox.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.GetBaseItems(System.String)">
<summary>
Gets the collection for base item based on the base field.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.GetCalculationName(System.String)">
<summary>
Gets the calculation name.
</summary>
<param name="name">calculation type name</param>
<returns>calculation name</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.SetVisualStyleElement">
<summary>
Sets the VisualStyle for the ComputationInfo dialog.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.SetDefaultElementStyle">
<summary>
Sets the default VisualStyle for the ComputationInfo dialog.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.InitializeComponent">
<summary>
Initializes the components.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.BindComboItems">
<summary>
Binds the combo box items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.GetSummaryType(System.String)">
<summary>
Gets the summary type.
</summary>
<param name="type">summary type</param>
<returns>summary type</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.GetCalculationType(System.String)">
<summary>
Gets the calculation type.
</summary>
<param name="type">calculation type</param>
<returns>calculation type</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.PivotCompInfo_Load(System.Object,System.EventArgs)">
<summary>
Triggered when the PivotComputational info form gets loaded.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.text_TextChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the text gets changed in the FieldHeader text or Formatted text or Description text.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.comboBox_SelectedIndexChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the combo box selected index gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.cmbCalculationType_SelectedValueChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the combo box selected value gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.cmbBaseField_SelectedValueChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the combo box selected value gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.okbtn_Click(System.Object,System.EventArgs)">
<summary>
Triggered when the OK button is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotCompInfo.cancelbtn_Click(System.Object,System.EventArgs)">
<summary>
Triggered when the CANCEL button is clicked.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanged"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventHandler">
<summary>
Represents the method that will handle the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanging"/> event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction">
<summary>
Specifies the action performed in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner"/>.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction.FieldsUpdate">
<summary>
Indicates that the pivot table field list is getting changed.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction.RowsUpdate">
<summary>
Indicates that the rows collection is getting changed.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction.ColumnsUpdate">
<summary>
Indicates that the column collection is getting changed.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction.ValuesUpdate">
<summary>
Indicates that the value collection is changed.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction.FiltersUpdate">
<summary>
Indicates that the filter collection is getting changed.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner">
<summary>
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.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<param name="pivotGridControl">The instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> class.</param>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanged">
<summary>
Occurs whenever the schema definitions gets changed in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner"/>.
</summary>
<remarks>
This event will be raised when the field list or row, column, value, filter collection gets changed.
</remarks>
</member>
<member name="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanging">
<summary>
Occurs whenever the schema definitions begin to change in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner"/>.
</summary>
<remarks>
This event will be raised when the field list or row, column, value, filter collection gets changed.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.DeferLayoutUpdateCheckBox">
<summary>
Gets or sets the check box control used for enabling and disabling defer layout support.
</summary>
<remarks>
The <see cref="P:Syncfusion.Windows.Forms.Tools.CheckBoxAdv.CheckState"/> value of this check box is bound with the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.DeferLayoutUpdate"/> property.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.ShowCalculationsAsColumnCheckBox">
<summary>
Gets or sets the check box control used for enabling and disabling show calculations as columns support.
</summary>
<remarks>
The <see cref="P:Syncfusion.Windows.Forms.Tools.CheckBoxAdv.CheckState"/> value of this check box is bound with the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.ShowCalculationsAsColumns"/> property.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.DeferLayoutUpdateButton">
<summary>
Gets or sets the button control used for updating the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> based on dynamic operations.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.RefreshGridSchemaLayout">
<summary>
Refreshes the pivot schema designer in order to display the updated items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SetLabelsWidth">
<summary>
Sets the label width.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.ApplyVisualStyle">
<summary>
Sets the color for label,button, check-box and other basic colors
according to its respective theme in PivotScheme Designer.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.AddItemsToSchemaViaCheck(System.String)">
<summary>
Adds the items to schema depending on the check state of the item.
</summary>
<param name="itemText">The item to be added.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.RemoveItemsFromSchemaDesginer(System.String)">
<summary>
Determines whether to remove items from schema or not when unchecked.
</summary>
<param name="itemText">The item to be removed.</param>
<returns><b>true</b> if the item is removed from the schema designer; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.AddItemstoGridviaCheck(System.String)">
<summary>
Adds item to schema when checking an item in the table field list.
</summary>
<param name="itemText">The item to be added.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.RowHeightOnScaling">
<summary>
Performed when DPI is greater than 100 then the DefaultRowHeight will be set based on the font size.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.ResetItemCollectionLists(System.Boolean)">
<summary>
Resets the dictionary items.
</summary>
<param name="delCache">Boolean value.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.RaiseSchemaChangingEvent(Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanging"/> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs"/> that contains event argument.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.RaiseSchemaChangedEvent(Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanged"/> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs"/> event argument.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.PopulateTableFieldList(System.Boolean)">
<summary>
Populates the GridColumnGrid with the values.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.PopulatePivotItems">
<summary>
Populates the sub grids with the pivot collection items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.RemoveItemsFromSchema">
<summary>
Determines whether to remove the item from schema or not when unchecked.
</summary>
<returns>Returns True.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.RemoveItemsfromGrid(System.String)">
<summary>
Determines whether to remove the items from Grid or not when unchecked.
</summary>
<param name="itemText">The unchecked item.</param>
<returns><b>true</b> if the items are removed; Otherwise False.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.OnSchemaChanging(Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanging"/> event.
</summary>
<param name="e">The event argument.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.OnSchemaChanged(Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanged"/> event.
</summary>
<param name="e">The event argument.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.Dispose(System.Boolean)">
<summary>
Releases the managed resources.
</summary>
<param name="disposing"><b>true</b>, if managed resources should be disposed; otherwise, <b>false</b>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.InitializeComponent">
<summary>
Initializes the component.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.splitcontainer_SplitterMoving(System.Object,System.Windows.Forms.SplitterCancelEventArgs)">
<summary>
Triggered when the split container's splitter is moving.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.Windows.Forms.SplitterCancelEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.splitcontainer_SplitterMoved(System.Object,System.Windows.Forms.SplitterEventArgs)">
<summary>
Triggered when the split container's splitter gets moved.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.Windows.Forms.SplitterEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.CanResize(System.Int32)">
<summary>
Determines whether to resize the schema designer or not.
</summary>
<param name="resizeValue">The new size value.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.tableFieldList_Click(System.Object,System.EventArgs)">
<summary>
Triggered when the table field list's cell click is done.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.ScrollerVisualStyle">
<summary>
Applies the Visual styles to the Scroll.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.GetBitmap(System.String)">
<summary>
Gets the images for high DPI components.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.PopulateControls">
<summary>
Populates the controls in the schema designer.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.PopulateThemedControls">
<summary>
Populates the controls in the schema designer.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.Panel2_Resize(System.Object,System.EventArgs)">
<summary>
Triggered when the Panel2 is resized.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.Model_QueryCellInfo(System.Object,Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs)">
<summary>
Triggered and gets the cell information.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.PopulateList">
<summary>
Repopulates the list based on FieldHeader of PivotItem.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.ModifyTableListItem(Syncfusion.PivotAnalysis.Base.PivotItem)">
<summary>
Modifies the TableFieldList item in consideration with FieldHeader.
</summary>
<param name="Item">PivotItem to be added in completeTablelist collection.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.AssignItemCollectionLists">
<summary>
Assigns the dictionary items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.Filters_CollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the filter's collection gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.FilterItems_CollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
<summary>
Triggered when the filter items collection gets changed.
</summary>
<param name="sender">The Control.</param>
<param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.GetBackColors">
<summary>
Gets the back color for the labels.
</summary>
<returns>Color.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.QueryItemAvailability(System.String)">
<summary>
Determines to check for items in the PivotCollections while populating the table field list.
</summary>
<param name="itemText">The item to be checked.</param>
<returns><b>true</b> if the specified item is available; otherwise, <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.AddItemstoSchema">
<summary>
Adds items to schema when checking an item in the table field list.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.AddFieldstoRowLabel">
<summary>
Adds Fields to row lists.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.AddFieldstoColLabel">
<summary>
Adds Fields to column lists.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.AddFieldstoCalcLabel">
<summary>
Adds the Field name to calculate lists.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.AddFieldstoFilterLabel">
<summary>
Adds the Fields to the Filter lists.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.calcasColumns_CheckStateChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the check state of the ShowCalculationsAsColumnn check-box is changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.layoutUpdate_CheckStateChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the check state of the LayoutUpdate check-box is changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.updateBtn_Click(System.Object,System.EventArgs)">
<summary>
Triggered and updates the Grid.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.gridColumnList_CheckBoxClick(System.Object,Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs)">
<summary>
Triggered when the grid column list is changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.PivotSchemaDesigner_SizeChanged(System.Object,System.EventArgs)">
<summary>
Triggered when the PivotSchema designer's size gets changed.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A <see cref="T:System.EventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanged"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs.#ctor">
<summary>
Initialize a new instance for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction)">
<summary>
Initialize a new instance for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction"/>.
</summary>
<param name="schemaAction">The action that is performed on the schema designer.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangedEventArgs.SchemaAction">
<summary>
Gets the schema action that is performed on the pivot schema designer.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs">
<summary>
Provides data for the <see cref="E:Syncfusion.Windows.Forms.PivotAnalysis.PivotSchemaDesigner.SchemaChanging"/> event.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs.#ctor">
<summary>
Initialize a new instance for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction)">
<summary>
Initialize a new instance for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaAction"/>.
</summary>
<param name="schemaAction">The action that is being performed on the schema designer.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaChangingEventArgs.SchemaAction">
<summary>
Gets the schema action that is performed on the pivot schema designer.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaCellButton">
<summary>
Represents a button which is specially designed for the schema cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaCellButton.#ctor(Syncfusion.Windows.Forms.Grid.GridCellRendererBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaCellButton"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellRendererBase"/>.
</summary>
<param name="owner">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellRendererBase"/> that holds the schema cell button.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaCellButton.DrawButtonStyle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Boolean)">
<summary>
Draws the schema cell button with the specified values.
</summary>
<param name="g">Represents GDI+ surface</param>
<param name="rect">Represents the location and size of the rectangle.</param>
<param name="buttonState">Specifies the appearance of the button.</param>
<param name="style">Holds the values for customizing the cell style.</param>
<param name="isWhite">Represents that whether to set white color or not.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaCellButton.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the schema cell button with the specified values.
</summary>
<param name="g">Represents GDI+ surface</param>
<param name="rect">Represents the location and size of the rectangle.</param>
<param name="buttonState">Specifies the appearance of the button.</param>
<param name="style">Holds the values for customizing the cell style.</param>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer">
<summary>
Provides methods used to render the schema item cell with visual styles.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="gridControl">The grid control that holds the top left cell.</param>
<param name="cellModel">The data or model part of a cell type.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)">
<summary>
Raises the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/> event.
</summary>
<param name="e">A <see cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnGetCursor(System.Int32,System.Int32)">
<summary>
Changes the cursor for the schema item cell.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<returns>The <see cref="T:System.Windows.Forms.Cursor"/> to be displayed.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnMouseHover(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.MouseHover"/> event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnMouseHoverLeave(System.Int32,System.Int32,System.EventArgs)">
<summary>
Raises the <see cref="M:Syncfusion.Windows.Forms.Grid.GridCellRendererBase.OnMouseHoverLeave(System.Int32,System.Int32,System.EventArgs)"/> event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnDrawCellButton(Syncfusion.Windows.Forms.Grid.GridCellButton,System.Drawing.Graphics,System.Int32,System.Int32,System.Boolean,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the cell button element at the specified row and column index.
</summary>
<param name="button">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellButton" /> to be drawn.</param>
<param name="g">The <see cref="T:System.Drawing.Graphics" /> context of the canvas.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="isActive">True, if this is the active current cell; otherwise, false.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnLayout(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Drawing.Rectangle,System.Drawing.Rectangle[])">
<summary>
Calculates the client rectangle given the inner rectangle of a cell and any boundaries of cell buttons.
This method is called from PerformLayout method.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
<param name="innerBounds">The <see cref="T:System.Drawing.Rectangle" /> that contains the inner bounds of the cell.</param>
<param name="buttonsBounds">An array of <see cref="T:System.Drawing.Rectangle" /> that contains the bounds for each cell button element.</param>
<returns>A <see cref="T:System.Drawing.Rectangle" /> with the bounds.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnDrawDisplayText(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the text of the header cell after its background has been drawn.
This method is called from <see cref="M:Syncfusion.Windows.Forms.Grid.GridHeaderCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)" /> method.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="textRectangle">Specifies the text rectangle. It is the cell rectangle without buttons, borders, or text margins.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnButtonClicked(System.Int32,System.Int32,System.Int32)">
<summary>
Called when the user clicks on a button inside the cell.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell..</param>
<param name="button">The button that is clicked.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer.OnPushButtonClick(System.Int32,System.Int32)">
<summary>
Raises <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PushButtonClick"/> event when the user presses the push button.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellModel">
<summary>
Implements the data or model part for the schema item cell in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
<remarks>
See <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="gridModel">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> that holds all data information about a grid.</param>
<remarks>
You can typically access the cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellModel"/> class with the specified serialization information and streaming context.
</summary>
<param name="serializationInfo">Holds all the data needed to serialize or deserialize this model.</param>
<param name="streamingContext">Describes the source and destination of the serialized stream specified by the information.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellModel.GetFormattedText(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Object,System.Int32)">
<summary>
Gets the formatted text value.
</summary>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> object that holds the style information of the cell.</param>
<param name="value">The value to format.</param>
<param name="textInfo">TextInfo is a hint that denotes who is calling, default is GridCellBaseTextInfo.DisplayText.</param>
<returns>The formatted text of the given value.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<summary>
Creates a new <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellRenderer"/> that renders the cell model.
</summary>
<param name="control">The base control that holds the schema item cell renderer.</param>
<returns>A new schema item cell renderer.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaItemCellModel.OnQueryPrefferedClientSize(System.Drawing.Graphics,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridQueryBounds)">
<summary>
Calculates the preferred size of the cell based on its contents without margins and any buttons.
</summary>
<param name="graphics">The graphics context of the canvas.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> that holds the style information of the cell.</param>
<param name="queryBounds">The graphical bounds.</param>
<returns>The optimal size of the cell.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Direction">
<exlcude/>
<summary>
Defines the constants that specifies the direction of the splitter.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.Direction.Right">
<summary>
Represents the direction as Right.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.Direction.Left">
<summary>
Represents the direction as Left.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.Direction.Up">
<summary>
Represents the direction as Up.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.Direction.Down">
<summary>
Represents the direction as Down.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Splitter">
<summary>
Represents the control that is used to split.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Splitter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.Splitter"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Splitter.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Overrides and raises the paint event.
</summary>
<param name="pe">The <see cref="T:System.Windows.Forms.PaintEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Splitter.Splitter_KeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)">
<summary>
Triggered with the key-press event is done with the splitter.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyPressEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Splitter.Splitter_KeyUp(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
Triggered with the key-up event in the splitter.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">The <see cref="T:System.Windows.Forms.KeyPressEventArgs"/> that contains the event data.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem">
<summary>
Represents the class that contains the information of selected cell.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem.Column">
<summary>
Gets the selected column value.
</summary>
<value>The selected column value.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem.Row">
<summary>
Gets the selected row value.
</summary>
<value>The selected row value.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem.ColumnList">
<summary>
Gets the list of selected column values.
</summary>
<value>The selected column values list.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem.RowList">
<summary>
Gets the list of selected row values.
</summary>
<value>The selected row values list.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem.Value">
<exclude/>
<summary>
Gets the value of selected item.
</summary>
<value>The cell value.</value>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem.FormattedValue">
<exclude/>
<summary>
Gets the formatted value.
</summary>
<value>The formatted cell value.</value>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem.ToString">
<summary>
Returns a string representation for the current object.
</summary>
<returns>
A <see cref="T:System.String"/> that represents this instance.
</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItems">
<summary>
Represents the IEnumerable collection of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItem"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItems.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SelectedItems"/> class.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController">
<summary>
This class is used to serialize some important properties in PivotGrid control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.serializationOptions">
<summary>
To serialize the properties of PivotGrid control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.deserializationOptions">
<summary>
Deserialize the properties of PivotGrid control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController"/> class.
</summary>
<param name="ctrl">The PivotGrid control.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.pivotGridControl">
<summary>
Gets or sets the PivotGrid control.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.Serialize">
<summary>
Serializes the SfPivotGrid properties to the given XML string.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.Serialize(System.IO.Stream)">
<summary>
Serializes the PivotGrid control to the XML document file that are stored in the specified Stream.
</summary>
<param name="stream">Specifies the stream used to write the XML document file.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.Serialize(System.IO.Stream,Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions)">
<summary>
Serializes the PivotGrid with <see cref="!:Syncfusion.Windows.Forms.PivotAnalysis.SerializationOptions"/> to the XML document file that are stored in the specified Stream
</summary>
<param name="stream">Specifies stream used to write XML document file.</param>
<param name="options">Specifies the <see cref="!:Syncfusion.Windows.Forms.PivotAnalysis.SerializationOptions"/> to decide the type of operations such as sorting ,filtering and etc to be serialized.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.Deserialize(System.String)">
<summary>
Deserializes the SfPivotGrid from the given XML string.
</summary>
/// <param name="xmlString">
Contains the XML string content to deserialize.
</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.Deserialize(System.IO.Stream)">
<summary>
De-serializes the PivotGrid based on the XML document contained by the specified Stream.
</summary>
<param name="stream">Specifies the XML document to deserialize.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.Deserialize(System.IO.Stream,Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions)">
<summary>
De-serializes the PivotGrid based on the XML document of the specified Stream with <see cref="!:Syncfusion.Windows.Forms.PivotAnalysis.DeserializationOptions"/>.
</summary>
<param name="stream">Contains the XML document to deserialize.</param>
<param name="options">Decides the type of operations such as sorting, filtering and etc to be de-serialized.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.GetPropertyDescriptor(System.String)">
<summary>
Gets the property descriptor of the PivotItems.
</summary>
<param name="fieldName">Name of the field.</param>
<returns>Property descriptor.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.AddFilterCollection(Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid,Syncfusion.PivotAnalysis.Base.FilterItemsCollection)">
<summary>
To add the filter items into the collection such as tag,FieldCaption and header values.
</summary>
<param name="serializablePivotGrid">specifies the pivot grid that can be serialized.</param>
<param name="collection">specifies the <see cref="T:Syncfusion.PivotAnalysis.Base.FilterItemsCollection"/> filter collection.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.GetSerializablePivotGrid">
<summary>
Gets the PivotGrid control to be serialized.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.GetSerializablePivotGrid(Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions)">
<summary>
Gets the PivotGrid control to be serialized based on the options.
</summary>
<param name="options">Specifies the <see cref="!:Syncfusion.Windows.Forms.PivotAnalysis.SerializationOptions"/> to decide the type of operations such as sorting ,filtering and etc to be serialized.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.ReloadPivotGrid(Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid)">
<summary>
Reloads the PivotGrid control.
</summary>
<param name="serializablePivotGrid">Contains the XML document to deserialize.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.LoadPivotGrid(Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid,System.Collections.Generic.List{Syncfusion.PivotAnalysis.Base.PivotComputationInfo})">
<summary>
Reloads the PivotGrid control based on the options.
</summary>
<param name="serializablePivotGrid">Contains the XML document to deserialize.</param>
<param name="listPivotComputations">The list of pivot computations.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.ClearPivotGrid(Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid,System.Collections.Generic.List{Syncfusion.PivotAnalysis.Base.PivotComputationInfo})">
<summary>
Clears the fields from current control.
</summary>
<param name="serializablePivotGrid">Contains the XML document to serialize.</param>
<param name="listPivotComputations">List of pivot computations.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationController.ReloadPivotGrid(Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid,Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions)">
<summary>
Reloads the PivotGrid control based on the options.
</summary>
<param name="serializablePivotGrid">Contains the XML document to deserialize.</param>
<param name="options">Specifies the <see cref="!:Syncfusion.Windows.Forms.PivotAnalysis.DeserializationOptions"/> to decide the type of grid operations such as sorting ,filtering ,and etc to be de-serialized.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.PivotRows">
<summary>
Gets or sets the row based PivotItems..
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.PivotColumns">
<summary>
Gets or sets the column based PivotItems.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.PivotCalculations">
<summary>
Gets or sets the PivotCalculations.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.Filters">
<summary>
Gets or sets the filter expressions.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.PivotFields">
<summary>
Gets or sets the PivotFields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.ConditionalFormats">
<summary>
Gets or sets the collection of conditional formats.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.FilterCollection">
<summary>
Gets or sets the filter collection of PivotGrid.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.SortFields">
<summary>
Gets or sets the sort collection of PivotGrid.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.CollapsedFields">
<summary>
Gets or sets a value that indicates row and column index for hidden fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.AllowFiltering">
<summary>
Gets or sets a value indicating whether to enable or disable the filter.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.AllowSorting">
<summary>
Gets or sets a value indicating whether to enable or disable the sorting.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.AllowSelection">
<summary>
Gets or sets a value indicating whether to allow cell selection like-in Excel.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.EnableValueEditing">
<summary>
Gets or sets a value indicating whether to enable or disable editing the cells.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.EnableUpdating">
<summary>
Gets or sets a value indicating whether to enable or disable updating the cells.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.FreezeHeaders">
<summary>
Gets or sets a value indicating whether the row and column headers should freeze or not.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.RowPivotsOnly">
<summary>
Gets or sets a value indicating whether the PivotGrid control is used to analyze data with only rows or with rows and columns.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.ShowGroupBar">
<summary>
Gets or sets a value indicating whether GroupingBar needs to be visible or not.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.ShowPivotTableFieldList">
<summary>
Gets or sets a value indicating whether to show or hide the visibility of PivotSchemaDesigner.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.ShowPivotValueChooser">
<summary>
Gets or sets a value indicating whether to show or hide the PivotCalculation values in RowPivotsOnly mode.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.ShowCalculationsAsColumns">
<summary>
Gets or sets a value indicating whether the calculations should appear as rows or columns.
By default, calculations appear as columns.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.ShowSubTotals">
<summary>
Gets or sets a value indicating whether sub-total calculations should be shown or hidden.
</summary>
<remarks>
The default value is true.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.ShowGrandTotals">
<summary>
Gets or sets a value indicating whether the grand total calculations should be computed by the Engine.
</summary>
<remarks>
The default value is true.
</remarks>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializablePivotGrid.VisualStyle">
<summary>
Gets or sets the theme of the control.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableSortField">
<summary>
Represents a class that is used to serialize sorted item.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableSortField.IsDescSort">
<summary>
Gets or sets a value indicating whether the sorting order is in ascending or descending.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableSortField.FieldMappingName">
<summary>
Gets or sets the field name used for mapping.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableCollapsedField">
<summary>
Represents the class to denote the collapsed field being serialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableCollapsedField.RowIndex">
<summary>
Gets or sets a value indicating the row index of hidden values.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableCollapsedField.ColumnIndex">
<summary>
Gets or sets a value indicating the column index of hidden values.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter">
<summary>
Represents the class to denote the filter field being serialized.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter.Name">
<summary>
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.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter.Header">
<summary>
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.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter.Caption">
<summary>
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.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter.Format">
<summary>
Gets or sets the format of the filter item that is present in PivotSchemaDesigner.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter.FilterItems">
<summary>
Gets or sets the list of filter items.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter.FilteredValues">
<summary>
Gets or sets the list of filtered values.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializableFilter.IsFilterHeaderArea">
<summary>
Gets or sets a value indicating whether the item is located in filter header area.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions">
<summary>
Represents the class that contains options for controlling the serialization.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.SerializeFiltering">
<summary>
Gets or sets a value indicating whether the filtered items need to be serialized in PivotGridControl.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.SerializeGrouping">
<summary>
Gets or sets a value indicating whether the grouping bar needs to be serialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.SerializeSorting">
<summary>
Gets or sets a value indicating whether the sorted items need to be serialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.SerializeConditionalFormats">
<summary>
Gets or sets a value indicating whether the conditional formats need to be serialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.SerializePivotRows">
<summary>
Gets or sets a value indicating whether the pivot row items need to be serialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.SerializePivotColumns">
<summary>
Gets or sets a value indicating whether the pivot column items need to be serialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.SerializePivotCalculations">
<summary>
Gets or sets a value indicating whether the pivot calculation items need to be serialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.SerializationOptions.SerializeExpandCollapseState">
<summary>
Gets or sets a value indicating whether the expand and collapse state of items need to be serialized.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions">
<summary>
Represents the class that contains options for controlling the deserialization.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.DeserializeFiltering">
<summary>
Gets or sets a value indicating whether the filtered items need to be deserialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.DeserializeGrouping">
<summary>
Gets or sets a value indicating whether the grouping bar needs to be deserialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.DeserializeSorting">
<summary>
Gets or sets a value indicating whether the sorted items need to be deserialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.DeserializeConditionalFormats">
<summary>
Gets or sets a value indicating whether the conditional formats need to be deserialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.DeserailizePivotRows">
<summary>
Gets or sets a value indicating whether the pivot row items need to be deserialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.DeserializePivotColumns">
<summary>
Gets or sets a value indicating whether the pivot column items need to be deserialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.DeserializePivotCalculations">
<summary>
Gets or sets a value indicating whether the pivot calculation items need to be deserialized.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.Serialization.DeserializationOptions.DeserializeExpandCollapseState">
<summary>
Gets or sets a value indicating whether the expand and collapse state of items need to be deserialized.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle">
<exclude/>
<summary>
Represents a class that encapsulates the painting logic for a triangle.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection,System.Drawing.Brush,System.Drawing.Pen,System.Drawing.Pen,System.Drawing.Pen,System.Boolean)">
<summary>
Paints a triangle to a given graphics canvas provided with 3 different pens with on demand opacity.
</summary>
<param name="g">The <see cref="T:System.Drawing.Graphics"/> context of the canvas.</param>
<param name="bounds">The <see cref="T:System.Drawing.Rectangle"/> with the bounds.</param>
<param name="dir">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle"/> which indicates the sort order.</param>
<param name="backBrush">Brush to paint the inner region of the triangle.</param>
<param name="backPen1">Pen 1 to draw a triangle boundary.</param>
<param name="backPen2">Pen 2 to draw a triangle boundary.</param>
<param name="backPen3">Pen 3 to draw a triangle boundary.</param>
<param name="opaque">Specifies if the triangle should be drawn transparent.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection,System.Drawing.Brush,System.Drawing.Pen,System.Boolean)">
<summary>
Paints a triangle to a given graphics canvas provided a single pen with on demand opacity.
</summary>
<param name="g">The <see cref="T:System.Drawing.Graphics"/> context of the canvas.</param>
<param name="bounds">The <see cref="T:System.Drawing.Rectangle"/> with the bounds.</param>
<param name="dir">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection"/> which indicates the sort order.</param>
<param name="backBrush">Brush to paint the inner region of the triangle.</param>
<param name="backPen">Pen to draw a triangle boundary.</param>
<param name="opaque">Specifies if the triangle should be drawn transparent.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection,System.Drawing.Brush,System.Drawing.Pen)">
<summary>
Paints a triangle to a given graphics canvas.
</summary>
<param name="g">The <see cref="T:System.Drawing.Graphics"/> context of the canvas.</param>
<param name="bounds">The <see cref="T:System.Drawing.Rectangle"/> with the bounds.</param>
<param name="dir">The <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection"/> which indicates the sort order.</param>
<param name="backBrush">Brush to paint the inner region of the triangle.</param>
<param name="backPen">Pen to draw a triangle boundary.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle.BuildTrianglePoints(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection,System.Drawing.Rectangle)">
<summary>
Gets the triangle points.
</summary>
<param name="dir">The direction of the triangle point.</param>
<param name="bounds">The rectangle bounds of the triangle.</param>
<returns>Point.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridPaintTriangle.OffsetPoints(System.Drawing.Point[],System.Int32,System.Int32)">
<summary>
Sets the Offset points.
</summary>
<param name="points">Triangle point's array collection.</param>
<param name="xOffset">Offset of X-axis.</param>
<param name="yOffset">Offset of Y-axis.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel">
<summary>
Implements the class for the data or model part of a column header with sort indicator.
</summary>
<remarks>
You typically access cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> class.<para/>
A <see cref="T:Syncfusion.Windows.Forms.Grid.GridSortColumnHeaderCellModel"/> can serve as model for several <see cref="T:Syncfusion.Windows.Forms.Grid.GridSortColumnHeaderCellRenderer"/>
instances if there are several <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> views for a <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
<para/>
See <see cref="T:Syncfusion.Windows.Forms.Grid.GridSortColumnHeaderCellRenderer"/> for more detailed information about this cell type.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel.#ctor(Syncfusion.Windows.Forms.Grid.GridModel)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/>.
</summary>
<param name="grid">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> class.</param>
<remarks>
You typically access cell models through the <see cref="P:Syncfusion.Windows.Forms.Grid.GridModel.CellModels"/>
property of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridModel"/> class.
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel"/> class with the specified serialization information and Streaming context.
</summary>
<param name="info">The information required to serialize and deserialize this instance.</param>
<param name="context">The source and destination of the serialized stream.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel.GetFormattedText(Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Object,System.Int32)">
<summary>
Gets the Formatted text value.
</summary>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo"/> object that holds cell information.</param>
<param name="value">The value to format.</param>
<param name="textInfo">TextInfo is a hint who is calling, default is GridCellBaseTextInfo.DisplayText.</param>
<returns>The formatted text of the given value.</returns>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel.CreateRenderer(Syncfusion.Windows.Forms.Grid.GridControlBase)">
<override/>
<summary>Creates the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer"/> instance that renders with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/>.</summary>
<param name="control">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<returns>The new <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel"/> instance with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellModel.OnQueryPrefferedClientSize(System.Drawing.Graphics,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,Syncfusion.Windows.Forms.Grid.GridQueryBounds)">
<summary>
Calculates the preferred size of the cell based on its contents without margins and any buttons.
</summary>
<param name="graphics">The graphics context of the canvas.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> that holds the style information of the cell.</param>
<param name="queryBounds">The graphical bounds.</param>
<returns>The optimal size of the cell.</returns>
<override/>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer">
<summary>
Implements the class for the renderer part of the sorted column header of the PivotGrid.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.#ctor(Syncfusion.Windows.Forms.Grid.GridControlBase,Syncfusion.Windows.Forms.Grid.GridCellModelBase)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer"/> class with the specified <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> and <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/>.
</summary>
<param name="gridControlBase">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlBase"/> class.</param>
<param name="cellModel">The instance of <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellModelBase"/> class.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnPrepareViewStyleInfo(Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)">
<summary>
Raises when the <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PrepareViewStyleInfo"/> event occurs.
</summary>
<param name="e">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs"/> that contains the event data.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnGetCursor(System.Int32,System.Int32)">
<summary>
Overrides and triggers to get cursor.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<returns>Cursor.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnDrawDisplayText(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<override/>
<summary>
Overrides and draws the display text.
</summary>
<param name="g">The graphics object.</param>
<param name="rowIndex">The row index.</param>
<param name="colIndex">The column index.</param>
<param name="style">Style object that holds the values of style properties.</param>
<param name="textRectangle">The rectangle bounds of the display text.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnMouseDown(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggers the mouse down event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnMouseUp(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggers the mouse up event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnClick(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<override/>
<summary>
Overrides and triggers the click event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnDrawCellButton(Syncfusion.Windows.Forms.Grid.GridCellButton,System.Drawing.Graphics,System.Int32,System.Int32,System.Boolean,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Overrides and triggers to draw the cell buttons.
</summary>
<param name="button">Used in the cell renderer.</param>
<param name="g">GDI+ surfaces.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="bActive">Represents the boolean value.</param>
<param name="style">Style object that holds the values of style properties.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnDraw(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Draws the contents of the client bounds for the cell, e.g. the text for a static cell.
</summary>
<param name="graphics">Points to the device context.</param>
<param name="clientRectangle">Specifies the client rectangle without buttons and borders.</param>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">The <see cref="T:Syncfusion.Windows.Forms.Grid.GridStyleInfo" /> object that holds the style information for the cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnMouseHover(System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
<summary>
Overrides and triggers the mouse hover event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnMouseHoverLeave(System.Int32,System.Int32,System.EventArgs)">
<summary>
Overrides and triggers the Mouse hover leave event.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> that contains the event data.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnLayout(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo,System.Drawing.Rectangle,System.Drawing.Rectangle[])">
<summary>
Overrides and triggers the OnLayout() method.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">Style object that holds the values of style properties.</param>
<param name="innerBounds">Represents the inner bounds of the rectangle.</param>
<param name="buttonsBounds">Represents the bounds of the cell button.</param>
<returns>Inner bounds of the rectangle.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnButtonClicked(System.Int32,System.Int32,System.Int32)">
<summary>
Called when the user clicks on a button inside the cell.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="button">The button that is clicked.</param>
<override/>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.OnPushButtonClick(System.Int32,System.Int32)">
<summary>
Raises <see cref="E:Syncfusion.Windows.Forms.Grid.GridControlBase.PushButtonClick"/> event when the user presses the push button.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.IsHeaderHot(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Determines whether the header is applied with Header hot property or not.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">Style object that holds the values of style properties.</param>
<returns><b>true</b> if the Header hot property is applied;Otherwise <b>false</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortColumnHeaderCellRenderer.IsHeaderPressed(System.Int32,System.Int32,Syncfusion.Windows.Forms.Grid.GridStyleInfo)">
<summary>
Determines whether the header is pressed or not.
</summary>
<param name="rowIndex">The row index of the current cell.</param>
<param name="colIndex">The column index of the current cell.</param>
<param name="style">Style object that holds the values of style properties.</param>
<returns><b>true</b> if the header is pressed; otherwise, <b>false</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortInfo">
<exclude/>
<internalonly/>
<summary>Internal only.
Represents a class that provides the sort info of PivotGrid.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortInfo.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridSortInfo"/> class.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection">
<exclude/>
<summary>
Defines the constants that specifies the direction of a triangle when drawing triangle with <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection"/>.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection.Up">
<summary>
A triangle pointing up.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection.Down">
<summary>
A triangle pointing down.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection.Left">
<summary>
A triangle pointing to the left.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridTriangleDirection.Right">
<summary>
A triangle pointing to the right.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.defaultStyle">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.#ctor">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity,Syncfusion.Styles.StyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore"/>.</param>
<param name="store">The store.</param>PivotEditItemsMenuStyleInfo
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.GetDefaultStyle">
<summary>
Gets the default style value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/> class.
</summary>
<returns>Returns the default style value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.DefaultStyle">
<summary>
Gets the default values of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/> instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.BackColor">
<summary>
Gets or sets the item border color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.BorderColor">
<summary>
Gets or sets the item border color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.ForeColor">
<summary>
Gets or sets the fore color of the item text.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.ShouldSerializeForeColor">
<summary>
Determines a value indicating whether to serialize <see cref="!:EditMenuStyleInfo.TextColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.ShouldSerializeBackColorr">
<summary>
Determines a value indicating whether to serialize <see cref="!:EditMenuStyleInfo.TextColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.ShouldSerializeBorderColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.BorderColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.ForeColorProperty">
<summary>
Provides information about the <see cref="!:EditMenuStyleInfo.TextColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.BackColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.BorderColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.BorderColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo.BorderColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="F:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoStore.staticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoIdentity">
<summary>
Implements the class that provide the identity information of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/>
using <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoIdentity.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoIdentity"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="styleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfoIdentity"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo">
<summary>
Represents the class to define the style for items used in <see cref="!:Expander"/> control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.defaultStyle">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.#ctor">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity,Syncfusion.Styles.StyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore"/>.</param>
<param name="store">The store.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.GetDefaultStyle">
<summary>
Gets the default style value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo"/> class.
</summary>
<returns>Returns the default style value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.DefaultStyle">
<summary>
Gets the default values of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo"/> instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.FillColor">
<summary>
Gets or sets the fill color of expander.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.ShouldSerializeFillColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.FillColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore.FillColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo.FillColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="F:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoStore.staticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoIdentity">
<summary>
Implements the class that provide the identity information of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfo"/>
using <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoIdentity.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoIdentity"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="styleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.ExpanderStyleInfoIdentity"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo">
<summary>
Represents the class to define the style for items used in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDown"/> control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.defaultStyle">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.#ctor">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity,Syncfusion.Styles.StyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore"/>.</param>
<param name="store">The store.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.GetDefaultStyle">
<summary>
Gets the default style value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/> class.
</summary>
<returns>Returns the default style value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.DefaultStyle">
<summary>
Gets the default values of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/> instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BackColor">
<summary>
Gets or sets the filter drop down background color.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.CornerRadius" -->
<!-- Badly formed XML comment ignored for member "P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BorderThickness" -->
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BorderColor">
<summary>
Gets or sets the filter drop down border color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.SearchIcon">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for filter drop down.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.AscendingIcon">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for filter drop down.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.DescendingIcon">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for filter drop down.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ForeColor">
<summary>
Gets or sets the fore color of the filter drop down item's text.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ShouldSerializeForeColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ForeColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ShouldSerializeBackColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BackColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ShouldSerializeBorderThickness">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BorderThickness"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ShouldSerializeCornerRadius">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.CornerRadius"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ShouldSerializeBorderColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BorderColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ShouldSerializeSearchIcon">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.SearchIcon"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ShouldSerializeAscendingIcon">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.AscendingIcon"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ShouldSerializeDescendingIcon">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.DescendingIcon"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.ForeColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.ForeColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.BackColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BackColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.CornerRadiusProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.CornerRadius"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.BorderThicknessProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BorderThickness"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.BorderColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.BorderColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.SearchIconProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.SearchIcon"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.AscendingIconProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.AscendingIcon"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.DescendingIconProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo.DescendingIcon"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="F:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoStore.staticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoIdentity">
<summary>
Implements the class that provide the identity information of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/>
using <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoIdentity.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoIdentity"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="styleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfoIdentity"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo">
<summary>
Represents the class to define the style for items used in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.defaultStyle">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.#ctor">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity,Syncfusion.Styles.StyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore"/>.</param>
<param name="store">The store.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.GetDefaultStyle">
<summary>
Gets the default style value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/> class.
</summary>
<returns>Returns the default style value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.DefaultStyle">
<summary>
Gets the default values of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/> instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.BackColor">
<summary>
Gets or sets the item border color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.BorderColor">
<summary>
Gets or sets the item border color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.SortIconColor">
<summary>
Gets or sets the sort icon fill color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ForeColor">
<summary>
Gets or sets the fore color of the item text.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.Font">
<summary>
Gets or sets the <see cref="T:System.Drawing.Font"/> value of the items.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ShouldSerializeForeColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ForeColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ShouldSerializeBackColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ForeColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ShouldSerializeFont">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.Font"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ShouldSerializeBorderColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.BorderColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ShouldSerializeSortIconColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.SortIconColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.ForeColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.ForeColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.FontProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.Font"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.BackColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.BorderColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.BorderColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.BorderColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.SortIconColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo.SortIconColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoStore.staticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoIdentity">
<summary>
Implements the class that provide the identity information of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/>
using <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoIdentity.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoIdentity"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="styleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfoIdentity"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo">
<summary>
Represents the class to define the style for items used in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.defaultStyle">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.#ctor">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity,Syncfusion.Styles.StyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore"/>.</param>
<param name="store">The store.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.GetDefaultStyle">
<summary>
Gets the default style value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/> class.
</summary>
<returns>Returns the default style value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.DefaultStyle">
<summary>
Gets the default values of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/> instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.BackColor">
<summary>
Gets or sets the grouping bar background color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.FilterAreaBackColor">
<summary>
Gets or sets the filter header background color.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.ShouldSerializeFilterAreaBackColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.FilterAreaBackColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.ShouldSerializeBackColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.BackColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.FilterAreaBackColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.FilterAreaBackColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.BackColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo.BackColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="F:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoStore.staticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoIdentity">
<summary>
Implements the class that provide the identity information of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/>
using <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoIdentity.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoIdentity"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="thisStyleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfoIdentity"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle">
<summary>
Represents the class to define the style for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.defaultStyle">
<summary>
It contains the value of the <see cref="!:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl.DefaultStyle"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle"/> class.
</summary>
<param name="store"> Holds instance of a <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore"/> class. </param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity,Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlStyleInfoStore"/>.</param>
<param name="store"> Holds instance of a <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore"/> class </param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.CreateSubObjectIdentity(Syncfusion.Styles.StyleInfoProperty)">
<summary>
Creates the sub object identity.
</summary>
<param name="sip">The style info property</param>
<returns></returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.DefaultStyle">
<summary>
Gets the default style value for the <see cref="T:Syncfusion.Windows.Forms.Grid.GridControl"/> control.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.EditMenuStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.EditMenuStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.HeaderCellStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.Grid.GridHeaderStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ValueCellStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SummaryCellStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.Grid.GridCellStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.GroupBarStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.GroupBarItemStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBarItemStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SchemaDesignerItemStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SchemaDesignerStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.FilterDropDownStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterDropDownStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.PivotValueChooserStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ComputationInfoDialogStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> styles.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ExpanderStyle">
<summary>
Gets or sets the value for <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> styles.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeHeaderCellStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.HeaderCellStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeEditMenuStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.EditMenuStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeValueCellStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ValueCellStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeSummaryCellStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SummaryCellStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeGroupBarItemStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.GroupBarItemStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeGroupBarStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.GroupBarStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeSchemaDesignerStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SchemaDesignerStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeSchemaDesignerItemStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SchemaDesignerItemStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeFilterDropDownStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.FilterDropDownStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializePivotValueChooserStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.PivotValueChooserStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ShouldSerializeComputationInfoDialogStyle">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ComputationInfoDialogStyle"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.HeaderCellStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.HeaderCellStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.EditMenuStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.EditMenuStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.ValueCellStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ValueCellStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.SummaryCellStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SummaryCellStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.GroupBarItemStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.GroupBarItemStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.GroupBarStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.GroupBarStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.SchemaDesignerStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SchemaDesignerStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.SchemaDesignerItemStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.SchemaDesignerItemStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.FilterDropDownStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.FilterDropDownStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.PivotValueChooserStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.PivotValueChooserStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.ComputationInfoDialogStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ComputationInfoDialogStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.ExpanderStyleProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle.ExpanderStyle"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.Grid.GridControlStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="!:RadialMenuStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="T:Syncfusion.Styles.StaticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity">
<summary>
Represents a class that provides style identity information for nested objects of the
<see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle" /> class.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity.gridControl">
<summary>
Maintains the GridControl for create the identity.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity.#ctor(Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity"/> class.
</summary>
<param name="grid">
<see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/> instance to create an identity.
</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="thisStyleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlInfoSubObjectIdentity">
<summary>
Represents a class that provides style identity information for nested objects of the
<see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlVisualStyle" /> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlInfoSubObjectIdentity.#ctor(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControlInfoSubObjectIdentity"/> class.
</summary>
<param name="owner">
The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> that owns this sub-object.
</param>
<param name="sip">
The <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> descriptor for this expandable
sub-object.
</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo">
<summary>
Represents the class to define the style for items used in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.defaultStyle">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.#ctor">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity,Syncfusion.Styles.StyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore"/>.</param>
<param name="store">The store.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.GetDefaultStyle">
<summary>
Gets the default style value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> class.
</summary>
<returns>Returns the default style value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.DefaultStyle">
<summary>
Gets the default values of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BackColor">
<summary>
Gets or sets the pivot value chooser background color.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.CornerRadius" -->
<!-- Badly formed XML comment ignored for member "P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BorderThickness" -->
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BorderColor">
<summary>
Gets or sets the pivot value chooser border color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.ForeColor">
<summary>
Gets or sets the fore color of the pivot value chooser text.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.ShouldSerializeForeColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.ForeColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.ShouldSerializeBackColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BackColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.ShouldSerializeBorderThickness">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BorderThickness"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.ShouldSerializeCornerRadius">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.CornerRadius"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.ShouldSerializeBorderColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BorderColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.ForeColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.ForeColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.BackColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BackColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.CornerRadiusProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.CornerRadius"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.BorderThicknessProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BorderThickness"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.BorderColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo.BorderColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoStore.staticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoIdentity">
<summary>
Implements the class that provide the identity information of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfo"/>
using <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoIdentity.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoIdentity"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="thisStyleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotValueChooserStyleInfoIdentity"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo">
<summary>
Represents the class to define the style for items used in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.defaultStyle">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.#ctor">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity,Syncfusion.Styles.StyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore"/>.</param>
<param name="store">The store.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.GetDefaultStyle">
<summary>
Gets the default style value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/> class.
</summary>
<returns>Returns the default style value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.DefaultStyle">
<summary>
Gets the default values of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/> instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.BorderColor">
<summary>
Gets or sets the cell background color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.ForeColor">
<summary>
Gets or sets the fore color of the cell text.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.Font">
<summary>
Gets or sets the <see cref="T:System.Drawing.Font"/> value of the cells.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.ShouldSerializeForeColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.ForeColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.ShouldSerializeFont">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.Font"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.ShouldSerializeBorderColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.BorderColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.ForeColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.ForeColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.FontProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.Font"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.BorderColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo.BorderColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoStore.staticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoIdentity">
<summary>
Implements the class that provide the identity information of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfo"/>
using <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoIdentity.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoIdentity"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="styleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerItemStyleInfoIdentity"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo">
<summary>
Represents the class to define the style for items used in <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.GroupBar"/> control.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.defaultStyle">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.#ctor">
<summary>
It contains the value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/> property.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore"/>.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.#ctor(Syncfusion.Styles.StyleInfoSubObjectIdentity,Syncfusion.Styles.StyleInfoStore)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/> class.
</summary>
<param name="identity">A <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/> that holds the identity for this <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore"/>.</param>
<param name="store">The store.</param>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.GetDefaultStyle">
<summary>
Gets the default style value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/> class.
</summary>
<returns>Returns the default style value.</returns>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DefaultStyle">
<summary>
Gets the default values of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/> instance.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.BackColor">
<summary>
Gets or sets the schema designer background color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.FieldListHeaderBackColor">
<summary>
Gets or sets the schema designer field list header background color.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ForeColor">
<summary>
Gets or sets the fore color of the schema designer text.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledForeColor">
<summary>
Gets or sets the fore color of the schema designer field's text for disabled items.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.Font">
<summary>
Gets or sets the <see cref="T:System.Drawing.Font"/> value of the schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.RowLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ColumnLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ValueLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.FilterLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledValueLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledFilterLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledColumnLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledRowLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.RemoveLabel">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.VerticalPinImage">
<summary>
Gets or sets the <see cref="T:System.Drawing.Image"/> for schema designer fields.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeForeColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ForeColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeDisabledForeColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledForeColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeFont">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.Font"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeBackColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.BackColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeFieldListHeaderBackColor">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.FieldListHeaderBackColor"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeRowLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.RowLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeColumnLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ColumnLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeValueLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ValueLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeFilterLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.FilterLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeDisabledValueLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledValueLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeDisabledFilterLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledFilterLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeDisabledRowLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledRowLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeDisabledColumnLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledColumnLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeRemoveLabel">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.RemoveLabel"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ShouldSerializeVerticalPinImage">
<summary>
Determines a value indicating whether to serialize <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.VerticalPinImage"/> property.
</summary>
<returns><b>True</b> if the property was modified; Otherwise <b>False</b>.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore">
<summary>
Provides storage for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/> object.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.ForeColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ForeColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.DisabledForeColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledForeColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.BackColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.BackColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.FontProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.Font"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.FieldListHeaderBackColorProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.FieldListHeaderBackColor"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.RowLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.RowLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.ColumnLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ColumnLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.ValueLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.ValueLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.FilterLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.FilterLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.DisabledValueLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledValueLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.DisabledFilterLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledFilterLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.DisabledRowLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledRowLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.DisabledColumnLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.DisabledColumnLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.RemoveLabelProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.RemoveLabel"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.VerticalPinImageProperty">
<summary>
Provides information about the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo.VerticalPinImage"/> property.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.staticData">
<summary>
It contains the value of the <see cref="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.StaticDataStore"/> property value.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore"/> class from a serialization stream.
</summary>
<param name="info">An object that holds all the data needed to serialize or deserialize this instance.</param>
<param name="context">Describes the source and destination of the serialized stream specified by info. </param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.StaticDataStore">
<summary>
Gets the static data value of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.GetStaticData">
<summary>
Initializes the <see cref="T:Syncfusion.Styles.StaticData"/>, if <see cref="F:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoStore.staticData"/> is null.
</summary>
<returns><see cref="T:Syncfusion.Styles.StaticData"/></returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoIdentity">
<summary>
Implements the class that provide the identity information of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfo"/>
using <see cref="T:Syncfusion.Styles.StyleInfoSubObjectIdentity"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoIdentity.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoIdentity"/> class.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoIdentity.GetBaseStyles(Syncfusion.Styles.IStyleInfo)">
<summary>
Loops through all base styles until it finds a style that has a specific property initialized.
</summary>
<param name="thisStyleInfo">A instance of <see cref="T:Syncfusion.Styles.IStyleInfo"/></param>
<returns>
Returns the <see cref="!:Syncfusion.WinForms.Core.Styles.IStyleInfo"/>.
</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoIdentity.OnStyleChanged(Syncfusion.Styles.StyleInfoBase,Syncfusion.Styles.StyleInfoProperty)">
<summary>
Occurs when a property in the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SchemaDesignerStyleInfoIdentity"/> has changed.
</summary>
<param name="style">The <see cref="T:Syncfusion.Styles.StyleInfoBase"/> instance that has changed.</param>
<param name="sip">A <see cref="T:Syncfusion.Styles.StyleInfoProperty"/> that identifies the property to operate on.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterBitmaps">
<exclude/>
<summary>
Provides functionality for drawing and caching bitmaps required for the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotGridControl"/>.
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.FilterBitmaps.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.FilterBitmaps"/> class.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterBitmaps.AsyncLoadBitmap">
<summary>
Gets the bitmap to indicate asynchronous loading.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterBitmaps.RedDownBitmap">
<summary>
Gets the bitmap to indicate columns that are moving down.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterBitmaps.RedUpBitmap">
<summary>
Gets the bitmap to indicate columns that are moving up.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterBitmaps.RedLeftBitmap">
<summary>
Gets the bitmap to indicate columns that are moving left.
</summary>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.FilterBitmaps.RedRightBitmap">
<summary>
Gets the bitmap to indicate columns that are moving right.
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotAnalysisLocalizationResourceAccessor">
<inherotdoc cref="T:Syncfusion.Windows.Forms.LocalizationResourceAccessor" />
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotAnalysisLocalizationResourceAccessor.Instance">
<summary>
Instance of <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotAnalysisLocalizationResourceAccessor"/>
</summary>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotAnalysisLocalizationResourceAccessor.GetControlAssembly">
<inheritdoc cref="M:Syncfusion.Windows.Forms.LocalizationResourceAccessor.GetControlAssembly" />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.PivotAnalysisLocalizationResourceAccessor.GetControlAssemblyDefaultNamespace">
<inheritdoc cref="M:Syncfusion.Windows.Forms.LocalizationResourceAccessor.GetControlAssemblyDefaultNamespace" />
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers">
<summary>
Determine the resource identifiers class
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PivotTableFieldList">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Choosefieldstoaddreport">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Dragfieldsbetweenareasbelow">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.ReportFilter">
<summary>
Used to store the constant string values.
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.ColumnLabels">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.RowLabel">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Values">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DropPivotFieldsheretoFilterBy">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DeferlayoutUpdate">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.ShowCalculationsasColumns">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Update">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PivotSchemaDesigner">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.OK">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Cancel">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.MoveUp">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.MoveDown">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.MoveToBeginning">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.MoveToEnd">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.MoveToRowLabels">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.MoveToColumnLabels">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.MoveToReportFilter">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.MoveToValues">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.RemoveField">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.SortLargestToSmallest">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.SortSmallestToLargest">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.ClearFilter">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.SelectAll">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.FieldName">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.FieldHeader">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.BaseField">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.BaseItem">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Description">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Format">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.SummarizeValueBy">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.ShowValueAs">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PivotComputationInformation">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DoubleTotalSum">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DoubleAverage">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DoubleMaximum">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DoubleMinimum">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DoubleStandardDeviation">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DoubleVariance">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Count">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DecimalTotalSum">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.IntTotalSum">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Custom">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DisplayIfDiscreteValuesEqual">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Sum">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Average">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Max">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Min">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.CountNumbers">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.StdDev">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.StdDevP">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Var">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.VarP">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.NoCalculation">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOfGrandTotal">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOfColumnTotal">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOfRowTotal">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOfParentColumnTotal">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOfParentRowTotal">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOfParentTotal">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Index">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Formula">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOf">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.DifferenceFrom">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOfDifferenceFrom">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.RunningTotalIn">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PercentageOfRunningTotalIn">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.RankSmallestToLargest">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.RankLargestToSmallest">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.Distinct">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.SubTotal">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.GrandTotal">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="F:Syncfusion.Windows.Forms.PivotAnalysis.PivotResourceIdentifiers.PivotValueChooser">
<summary>
Used to store the constant string values
</summary>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SR">
<summary>
SR provides localized access to string resources specified
in the assembly manifest Syncfusion.Windows.Forms.SR.resources
</summary>
<exclude />
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SR.GetString(System.String)">
<summary>
Gets the localized string for the given string.
</summary>
<param name="name">The string that has to be localized.</param>
<returns>The localized string value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SR.GetString(System.Globalization.CultureInfo,System.String)">
<summary>
Gets the localized string for the given string.
</summary>
<param name="culture">Specified the culture into which the string has to be localized.</param>
<param name="name">The string that has to be localized.</param>
<returns>The localized string value.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SR.GetObject(System.Globalization.CultureInfo,System.String)">
<summary>
Get localized version of the object.
</summary>
<param name="name">Name of the localized resource.</param>
<returns>Localized version of the object.</returns>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SR.GetLocalizedResourceManager(System.Reflection.Assembly,System.String)">
<summary>
Gets the localized ResourceManager.
</summary>
<param name="controlAssembly">The assembly of the control.</param>
<param name="nameSpace">The namespace of the control.</param>
<returns>Returns the resource manager.</returns>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SRCategoryAttribute">
<summary>
Specifies the category in which the property or event will be displayed in a visual designer.
</summary>
<remarks>
This is a localized version of CategoryAttribute. The localized string will be loaded from the
assembly manifest Syncfusion.Windows.Forms.SR.resources
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SRCategoryAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SRCategoryAttribute"/> class.
</summary>
<param name="category">The string for which the localized string has to be loaded.</param>
</member>
<member name="T:Syncfusion.Windows.Forms.PivotAnalysis.SRDescriptionAttribute">
<summary>
Specifies a description for a property or event.
</summary>
<remarks>
This is a localized version of DescriptionAttribute. The localized string will be loaded from the
assembly manifest Syncfusion.Windows.Forms.SR.resources
</remarks>
</member>
<member name="M:Syncfusion.Windows.Forms.PivotAnalysis.SRDescriptionAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.PivotAnalysis.SRDescriptionAttribute"/> class.
</summary>
<param name="description">The string for which the localized string has to be loaded.</param>
</member>
<member name="P:Syncfusion.Windows.Forms.PivotAnalysis.SRDescriptionAttribute.Description">
<summary>
Gets the string value for the description.
</summary>
<override/>
</member>
<member name="T:Syncfusion.PivotAnalysis.Windows.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Syncfusion.PivotAnalysis.Windows.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Syncfusion.PivotAnalysis.Windows.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
</members>
</doc>