corelibraries-devexpress-dot-data-dot-virtualservermoderowseventargs-9dee3140.md
Gets information on the grid’s current sorting, filtering and summary configuration.
Namespace : DevExpress.Data
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public VirtualServerModeConfigurationInfo ConfigurationInfo { get; }
Public ReadOnly Property ConfigurationInfo As VirtualServerModeConfigurationInfo
| Type | Description |
|---|---|
| VirtualServerModeConfigurationInfo |
An object that provides the grid’s sorting, filtering and summary configuration.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the ConfigurationInfo property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
connect-winforms-grid-to-dotnetcore-service/CS/WinForms.Client/MainForm.cs#L16
{
loader = new VirtualServerModeDataLoader(e.ConfigurationInfo);
e.RowsTask = loader.GetRowsAsync(e);
connect-winforms-grid-to-dotnetcore-service-enable-editing/CS/WinForms.Client/MainForm.cs#L18
{
loader = new VirtualServerModeDataLoader(e.ConfigurationInfo);
e.RowsTask = loader.GetRowsAsync(e);
connect-winforms-grid-to-dotnetcore-service-enable-pbac/CS/WinForms.Client/MainForm.cs#L129
{
loader = new VirtualServerModeDataLoader(e.ConfigurationInfo);
e.RowsTask = loader.GetRowsAsync(e);
connect-winforms-grid-to-dotnetcore-service/VB/WinForms.Client/MainForm.vb#L12
Private Sub VirtualServerModeSource_ConfigurationChanged(sender As Object, e As VirtualServerModeRowsEventArgs) Handles virtualServerModeSource.ConfigurationChanged
loader = New VirtualServerModeDataLoader(e.ConfigurationInfo)
e.RowsTask = loader.GetRowsAsync(e)
connect-winforms-grid-to-dotnetcore-service-enable-editing/VB/WinForms.Client/MainForm.vb#L17
Private Sub VirtualServerModeSource_ConfigurationChanged(sender As Object, e As DevExpress.Data.VirtualServerModeRowsEventArgs)
loader = New VirtualServerModeDataLoader(e.ConfigurationInfo)
e.RowsTask = loader.GetRowsAsync(e)
See Also
VirtualServerModeRowsEventArgs Class