Provides information on the
Row before its selection state is changed.
Namespace: Dapfor.Net.UiAssembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)
Syntax
C# |
---|
public sealed class GridRowSelectionEventArgs : EventArgs |
Visual Basic |
---|
Public NotInheritable Class GridRowSelectionEventArgs
Inherits EventArgs |
Visual C++ |
---|
public ref class GridRowSelectionEventArgs sealed : public EventArgs |
F# |
---|
[<SealedAttribute>]
type GridRowSelectionEventArgs =
class
inherit EventArgs
end |
Examples
| Copy |
---|
grid.SelectionChanging += delegate(object sender, GridRowSelectionEventArgs e)
{
if(e.Row.VisibleIndex == 0)
{
e.NewSelectionState = true;
}
if (e.Row.VisibleIndex == 1)
{
e.NewSelectionState = false;
}
}; |
Inheritance Hierarchy
See Also