Class FilePropertiesChangedEventArgs
Information passed in the FilePropertiesChanged event.
Inheritance
System.Object
System.EventArgs
FilePropertiesChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.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 |