Class SegmentEventArgs<TSegments>
Provided information about the event SegmentChanging event.
Inheritance
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class SegmentEventArgs<TSegments> : Object
Type Parameters
Name | Description |
---|---|
TSegments | The type of segments. |
Constructors
SegmentEventArgs()
Declaration
public SegmentEventArgs()
Properties
AddedSegments
Gets the list of added segments in the task.
Declaration
public List<TSegments> AddedSegments { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TSegments> | A list of |
Cancel
Gets or sets a value indicating whether the split or merge task operation should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | If set to |
Remarks
This property is applicable specifically to split and merge actions. It does not affect other operations such as cell editing or taskbar editing.
DeletedSegments
Gets the list of deleted segment records.
Declaration
public List<TSegments> DeletedSegments { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TSegments> | A list of |
UpdatedSegments
Gets the list of changed segment records during resize or drag actions of segements.
Declaration
public List<TSegments> UpdatedSegments { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TSegments> | A list of |