SaveSettings.ImageSaveMode Property |
| Description: | | Determines whether the document's images are stored through its data or through its file reference. By default images are stored through a file reference, when a file reference exists. Otherwise, if an image has been pasted from the clipboard, it is stored with its binary data. For a single image the value of this property can be overwritten with the Image.SaveMode property. The technical article Loading and Saving Images gives an overview how to export images.
|
| Syntax: | | [C#]
public ImageSaveMode ImageSaveMode { get; set; }
[Visual Basic]
Public Property ImageSaveMode() As ImageSaveMode
|
| | | Value | | Description | | | | Auto | | An image is saved with a file reference, when a file reference exists. Otherwise it is saved with its binary data.
| | SaveAsData | | The document's images are saved with their binary data.
| | SaveAsFileReference | | The document's images are saved through file references.
|
|
| Introduced: | | 15.1
|
| See also: | | Loading, Saving and Database Support, Graphical Overview, PDF Import and Export. |