Table of Contents

Class ObjectManipulationEventArgs

Namespace
DevExpress.Xpo
Assembly
DevExpress.Xpo.v24.1.dll

Provides data for the object manipulating events.

public class ObjectManipulationEventArgs : EventArgs
Inheritance
ObjectManipulationEventArgs
Inherited Members

Constructors

ObjectManipulationEventArgs(Session, object)

Initializes a new instance of the ObjectManipulationEventArgs class.

public ObjectManipulationEventArgs(Session session, object theObject)

Parameters

session Session

The Session object. This value is assigned to the ObjectManipulationEventArgs.Session property.

theObject object

An object which is currently being processed. This value is assigned to the ObjectManipulationEventArgs.Object property.

ObjectManipulationEventArgs(object)

Initializes a new instance of the ObjectManipulationEventArgs class.

public ObjectManipulationEventArgs(object theObject)

Parameters

theObject object

An object which is currently being processed. This value is assigned to the ObjectManipulationEventArgs.Object property.

Properties

Object

Gets the object currently being processed.

public object Object { get; }

Property Value

object

The object which is currently being processed.

Session

Gets the session whose persistent object is currently being processed.

public Session Session { get; }

Property Value

Session

A Session object whose persistent object is being processed.