Class ShapeCollectionChangingEventArgs<T>
Cancelable event arguments for shape collection Changing notifications, providing the change type and affected shape before modification.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.Shapes
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ShapeCollectionChangingEventArgs<T> : RadCancelEventArgs where T : FloatingShapeBase
Type Parameters
|
T
|
Properties
ChangeType
Category of modification about to be performed (Add, Remove, Clear) on the shape collection.
Declaration
public ShapeCollectionChangeType ChangeType { get; }
Property Value
|
ShapeCollectionChangeType
The change type. |
Shape
The shape about to be added, removed, or cleared from the collection.
Declaration
public T Shape { get; set; }
Property Value
|
T
The shape. |