Class SaveOptions
Defines the save options
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
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: Quark.CMSAdapters.Core.Data
Assembly: Quark.CMSAdapters.Core.dll
Syntax
public class SaveOptions : INotifyPropertyChanged
Constructors
SaveOptions()
Initializes a new instance of the SaveOptions class.
Declaration
public SaveOptions()
Properties
CreateMinorVersion
Gets or sets a value indicating whether to create minor version.
Declaration
public bool? CreateMinorVersion { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
|
FileName
Gets or sets the name of the file.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the file. |
FolderPath
Gets or sets the folder path.
Declaration
public List<string> FolderPath { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The folder path. |
NameConflictResolveOption
Gets or sets the name conflict resolve option.
Declaration
public NameConflictResolveOptions? NameConflictResolveOption { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<NameConflictResolveOptions> | The name conflict resolve option. |
Methods
RaisePropertyChangeEvent(String)
Raises the property change event.
Declaration
public void RaisePropertyChangeEvent(string propertyName)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | Name of the property. |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged