Class FilePropertiesChangedEventArgs
Information passed in the FilePropertiesChanged event.
Inheritance
Object
EventArgs
FilePropertiesChangedEventArgs
Inherited Members
EventArgs.Empty
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class FilePropertiesChangedEventArgs : EventArgs
Constructors
FilePropertiesChangedEventArgs(IFileProperties, IFileProperties)
Construct with the updated and original file properties.
Declaration
public FilePropertiesChangedEventArgs(IFileProperties newProperties, IFileProperties oldProperties)
Parameters
Type | Name | Description |
---|---|---|
IFileProperties | newProperties | |
IFileProperties | oldProperties |
Properties
NewProperties
The updated file properties.
Declaration
public IFileProperties NewProperties { get; set; }
Property Value
Type | Description |
---|---|
IFileProperties |
OldProperties
The file properties before they were changed.
Declaration
public IFileProperties OldProperties { get; set; }
Property Value
Type | Description |
---|---|
IFileProperties |