Class GridViewSummaryRowItem
Represents a summary row item containing summary items.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewSummaryRowItem : ObservableCollection<GridViewSummaryItem>, IList<GridViewSummaryItem>, ICollection<GridViewSummaryItem>, IReadOnlyList<GridViewSummaryItem>, IReadOnlyCollection<GridViewSummaryItem>, IEnumerable<GridViewSummaryItem>, IList, ICollection, IEnumerable, INotifyCollectionChanged, INotifyCollectionChanging, INotifyPropertyChanged, INotifyPropertyChangingEx
  Constructors
GridViewSummaryRowItem()
Initializes a new instance of the GridViewSummaryRowItem.
Declaration
public GridViewSummaryRowItem()
  GridViewSummaryRowItem(GridViewSummaryItem[])
Initializes a new instance of the GridViewSummaryRowItem.
Declaration
public GridViewSummaryRowItem(GridViewSummaryItem[] items)
  Parameters
| 
        GridViewSummaryItem[]
        items
         
  | 
    
Properties
Fields
Gets or sets the array of GridViewSummaryItem fields that describe this summary row.
Declaration
public GridViewSummaryItem[] Fields { get; set; }
  Property Value
| 
        GridViewSummaryItem[]
         
  | 
    
Item[String]
Gets the item related with the specified field name.
Declaration
public List<GridViewSummaryItem> this[string fieldName] { get; }
  Parameters
| 
        System.String
        fieldName
         the field name  | 
    
Property Value
| 
        System.Collections.Generic.List<GridViewSummaryItem>
         an instance of GridViewSummaryItem if found, null otherwise.  | 
    
Template
Gets or sets the owner template.
Declaration
public GridViewTemplate Template { get; }
  Property Value
| 
        GridViewTemplate
         
  | 
    
Methods
OnCollectionChanged(NotifyCollectionChangedEventArgs)
Calls the NotifyListenersCollectionChanged method with the provided arguments if not in a batch update.
Declaration
protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
  Parameters
| 
        NotifyCollectionChangedEventArgs
        e
         
  |