Click or drag to resize
KaxEditorExportSettings Property

Gets a reference to the EditorExportSettings object that allows you to set the export file properties

Namespace: Kettic.AspNet.Controls
Assembly: 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; }

Property Value

Type: EditorExportSettings
A reference to the EditorExportSettings that allows you to set the export file properties
Remarks

Use 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