Show / Hide Table of Contents

Class EditingChangedParams

When a control (EditableControl) executes a command to indicate that its "is editing" flag changed, an instance of this is used as the command parameter.

Inheritance
object
EditingChangedParams
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public class EditingChangedParams
Remarks

Initializes a new instance of the EditingChangedParams class.

Constructors

View Source

EditingChangedParams(bool, bool, object)

When a control (EditableControl) executes a command to indicate that its "is editing" flag changed, an instance of this is used as the command parameter.

Declaration
public EditingChangedParams(bool isEditing, bool isCanceled, object dataContext)
Parameters
Type Name Description
bool isEditing

The editing flag.

bool isCanceled

The cancelled editing flag.

object dataContext

The data context of the control.

Remarks

Initializes a new instance of the EditingChangedParams class.

Properties

View Source

DataContext

Gets the DataContext of the control whose "is editing" flag changed.

Declaration
public object DataContext { get; }
Property Value
Type Description
object
View Source

IsCanceled

Gets a value indicating whether whether editing was canceled.

Declaration
public bool IsCanceled { get; }
Property Value
Type Description
bool
View Source

IsEditing

Gets a value indicating whether the new value of the "is editing" flag.

Declaration
public bool IsEditing { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Generated by DocFX