Class HiddenRangeChangedEventArgs
Provides data for the LineHiddenChanged event.
Inheritance
System.Object
    HiddenRangeChangedEventArgs
  Namespace: Syncfusion.GridCommon.ScrollAxis
Assembly: Syncfusion.GridCommon.Portable.dll
Syntax
public sealed class HiddenRangeChangedEventArgs : EventArgs
  Constructors
HiddenRangeChangedEventArgs(Int32, Int32, Boolean)
Initializes a new instance of the HiddenRangeChangedEventArgs class.
Declaration
public HiddenRangeChangedEventArgs(int from, int to, bool hide)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | from | The start index of the hidden range.  | 
      
| System.Int32 | to | The end index of the hidden range.  | 
      
| System.Boolean | hide | hide value  | 
      
Properties
From
Gets the start index of the hidden range.
Declaration
public int From { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | The start index of the hidden range.  | 
      
Hide
Gets a value indicating whether to hide the lines in the given range or not.
Declaration
public bool Hide { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | A boolean value indicating whether to hide the lines in the given range.  | 
      
To
Gets the end index of the hidden range.
Declaration
public int To { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | The end index of the hidden range.  |