Version

ImageSavePreference Enumeration

Determines what to serialize if an Infragistics.Documents.RichText.ImageNode has both an Infragistics.Documents.RichText.ImageNode.ImageUri and an Infragistics.Documents.RichText.ImageNode.ImageResolved
Syntax
'Declaration
 
Public Enum ImageSavePreference 
   Inherits System.Enum
public enum ImageSavePreference : System.Enum 
Members
MemberDescription
EmbedIf the Infragistics.Documents.RichText.ImageNode.ImageResolved is available embed the image as a 'data url' using base64 encoding. Otherwise set the 'img' elments's 'src' attribute to the Infragistics.Documents.RichText.ImageNode.ImageUri.
LinkSet the 'img' elments's 'src' attribute to the Infragistics.Documents.RichText.ImageNode.ImageUri if available. If the ImageUri is not specified then save the image file locally if file access is granted. Otherwise embed the image as a 'data url' using base64 encoding.
LinkEmbedSet the 'img' elments's 'src' attribute to the Infragistics.Documents.RichText.ImageNode.ImageUri if available. Otherwise embed the image as a 'data url' using base64 encoding.
SaveLocallyIf the Infragistics.Documents.RichText.ImageNode.ImageResolved is available, save the image file locally if file access is granted. Otherwise use the Infragistics.Documents.RichText.ImageNode.ImageUri. If the ImageUri is not set then embed the image as a 'data url' using base64 encoding.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also