KaxEditorExportSettings Property |
Gets a reference to the EditorExportSettings object that
allows you to set the export file properties
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public EditorExportSettings ExportSettings { get; }
<PersistenceModeAttribute(PersistenceMode.InnerProperty)>
Public ReadOnly Property ExportSettings As EditorExportSettings
Get
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
property EditorExportSettings^ ExportSettings {
EditorExportSettings^ get ();
}
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
member ExportSettings : EditorExportSettings with get
Property Value
Type:
EditorExportSettings
A reference to the EditorExportSettings that allows you to set the export file properties
RemarksUse the ExportSettings property to control the export file settings
This property is read-only;
however, you can set the properties of the EditorExportSettings object it returns.
The properties can be set declaratively using one of the following methods:
- Place an attribute in the opening tag of the Kettic KaxEditor
control in the form Property-Subproperty, where Subproperty is a property of
the EditorExportSettings object (for example,
ExportSettings-FileName).
- Nest a <ExportSettings> element between the opening and closing
tags of the Kettic KaxEditor control.
The properties can also be set programmatically in the form
Property.Subproperty (for example, ExportSettings.FileName).
See Also