Class IValidateArgs<T>
Class that defines the predecessor validate arguments.
Inheritance
System.Object
IValidateArgs<T>
Implements
System.IEquatable<IValidateArgs<T>>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class IValidateArgs<T> : Object, IEquatable<IValidateArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
IValidateArgs()
Declaration
public IValidateArgs()
Properties
Cancel
Defines the event cancel status
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Data
Defines the Gantt data
Declaration
public IGanttData<T> Data { get; set; }
Property Value
Type | Description |
---|---|
IGanttData<T> |
EditEventArgs
Defines the edited event args.
Declaration
public object EditEventArgs { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
RecordIndex
Defines the record index
Declaration
public double RecordIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
RequestType
Defines the request type
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ValidateMode
Defines the valid mode.
Declaration
public IValidateMode ValidateMode { get; set; }
Property Value
Type | Description |
---|---|
IValidateMode |
Methods
Equals(IValidateArgs<T>)
Returns boolean value by comparing iValidateArgs
Declaration
public bool Equals(IValidateArgs<T> iValidateArgs)
Parameters
Type | Name | Description |
---|---|---|
IValidateArgs<T> | iValidateArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>