Defines a container for an image.
Image objects can be specified by a path to a source file, or inserted inline as base-64 encoded data.
Namespace | http://schemas.microsoft.com/office/onenote/2004/import |
Schema name | SimpleImport |
Element | Description |
---|---|
File | Represents the file path to the image file to be imported. |
Data | Represents the base64-encoded image data to be imported. . |
None.
<xsd:complexType name="ImageContent">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Contains the image to be imported. The data is either referenced in a
file or is included inlined, Base64 encoded.
</xsd:documentation>
</xsd:annotation>
<xsd:choice>
<xsd:element name="File" type="FilePath"/>
<xsd:element name="Data" type="xsd:base64Binary"/>
</xsd:choice>
</xsd:complexType>