| ShapeChangedEventArgsCreate Method (Int32) |
Creates an instance of the
ShapeChangedEventArgs class with a given feature.
(This method reuses a previously recycled instance or allocates a new instance if
necessary.)
Namespace: DigitalRune.Geometry.ShapesAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static ShapeChangedEventArgs Create(
int feature
)
Public Shared Function Create (
feature As Integer
) As ShapeChangedEventArgs
public:
static ShapeChangedEventArgs^ Create(
int feature
)
static member Create :
feature : int -> ShapeChangedEventArgs
Parameters
- feature
- Type: SystemInt32
The index of the shape feature that has changed.
Return Value
Type:
ShapeChangedEventArgs
A new or reusable instance of the
ShapeChangedEventArgs class.
Remarks
This method tries to obtain a previously recycled instance from a resource pool if resource
pooling is enabled (see ResourcePool.Enabled). If no
object is available, a new instance is automatically allocated on the heap.
The owner of the object should call Recycle when the instance is no longer
needed.
See Also