Class FilePropertiesChangedEventArgs
Information passed in the FilePropertiesChanged event.
Inherited Members
Namespace: SdlSdl.DesktopEditorEditorApi
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 |