Image.SaveMode Property |
| Description: |
|
Determines whether the image is stored through its data or through its file reference. By default an image is stored through
a file reference if a file reference exist. Otherwise, if the image has been pasted from the clipboard, it is stored with its complete binary data.
|
| Syntax: |
|
[C#]
public ImageSaveMode SaveMode { get; set; }
[Visual Basic]
Public Property SaveMode() As ImageSaveMode
|
|
|
| Value |
|
Description |
|
| |
| SaveAsData |
|
The image is saved in a Text Control document with its complete binary data.
|
| SaveAsFileReference |
|
The image is saved in a Text Control document trough a file reference.
|
|
| See also: |
|
Images, Graphical Overview. |