ClassRadGridView
Represents the RadGridView for Silverlight/WPF control wrapper.
Definition
Namespace:Telerik.WebAii.Controls.Xaml.Wpf
Assembly:Telerik.WebAii.Controls.Xaml.Wpf.dll
Syntax:
public class RadGridView : GridViewDataControl, IAutomationPeer, IPeerConverter, IRadGridView, IGridViewDataControl, IControl, IFrameworkElement, ITargetElement
Inheritance: objectAutomationObject<FrameworkElement>FrameworkElementWpfTestElementControlGridViewDataControlRadGridView
Derived Classes:
Implements:
Inherited Members
Constructors
RadGridView()
Declaration
public RadGridView()
Properties
GroupHeaderRows
Get the list of RadGridView group header rows.
Declaration
public IList<GroupHeaderRow> GroupHeaderRows { get; }
Property Value
GroupPanel
Get the RadGridView group panel.
Declaration
public GridViewGroupPanel GroupPanel { get; }
Property Value
GroupRows
Get the list of RadGridView group rows.
Declaration
public IList<GridViewGroupRow> GroupRows { get; }
Property Value
Rows
Get the list of RadGridView rows.
Declaration
public override IList<GridViewRow> Rows { get; }
Property Value
Overrides
SearchPanel
The Search panel of the RadGridView.
Declaration
public GridViewSearchPanel SearchPanel { get; }
Property Value
Methods
AssignReference(AutomationReference)
Assign the reference and perform your custom class initialization.
Declaration
public override void AssignReference(AutomationReference reference)
Parameters
reference
Overrides
Implements
CollapseGroupHeaderRow(string)
Collapse GroupHeaderRow with the given header content.
Declaration
public void CollapseGroupHeaderRow(string header)
Parameters
header
CollapseGroupRow(int)
Collapse the group row with the given index.
Declaration
public void CollapseGroupRow(int rowIndex)
Parameters
rowIndex
Group row index.
ExpandGroupHeaderRow(string)
Expand GroupHeaderRow with the given header content.
Declaration
public void ExpandGroupHeaderRow(string header)
Parameters
header
ExpandGroupRow(int)
Expand the group row with the given index.
Declaration
public void ExpandGroupRow(int rowIndex)
Parameters
rowIndex
Group row index.
GroupBy(int)
Group the grid dragging the header cell with the given index.
Declaration
public void GroupBy(int headerCellIndex)
Parameters
headerCellIndex
Header cell index.
GroupPanelItemClose(int)
Close the group panel item with the given index.
Declaration
public void GroupPanelItemClose(int groupPanelItemIndex)
Parameters
groupPanelItemIndex
Group panel item index.
OpenSearchPanel()
Presses Ctrl+F in order to open the SearchPanel.
Declaration
public void OpenSearchPanel()
Search(string, bool, bool, bool)
Types a spesific text in the SearchTextBox located in the SearchPanel. If the SearchPanel is not visible, Ctrl+F is pressed in order to be shown.
Declaration
public void Search(string textToSearch, bool clickFirst = true, bool simulateRealUser = true, bool shouldPressEnter = false)
Parameters
textToSearch
The text to be typed.
clickFirst
Indicates whether the SearchTextBox should be clicked before typing in it.
simulateRealUser
Indicates whether the typing should simulate real user. When set to false the Text of the TextBox is set directly.
shouldPressEnter
Indicates whether "Enter" should be pressed after the text is typed.