DekGenius.com
[ Team LiB ] Previous Section Next Section

NavigateEventArgs

System.Windows.Forms (system.windows.forms.dll)class

This class encapsulates the information for the DataGrid.Navigate event, which is raised when the user navigates through a data relation to a new table. You can determine whether the navigation is occurring Forward through the relation or back to the previous table.

public class NavigateEventArgs : EventArgs {
// Public Constructors
   public NavigateEventArgs(bool isForward);
// Public Instance Properties
   public bool Forward{get; }
}

Hierarchy

System.Object System.EventArgs NavigateEventArgs

Passed To

DataGrid.OnNavigate(), NavigateEventHandler.{BeginInvoke(), Invoke()}

    [ Team LiB ] Previous Section Next Section