Defines a container for ink data.
Ink objects must be described in Ink Serialized Format (ISF) format, base-64 encoded, or specified by a path to the source file. If you specify a file path, the source file should be a plain file with the byte stream containing the ISF. If you include the ink as data in the XML, then it should be base64 encoded.
Namespace | http://schemas.microsoft.com/office/onenote/2004/import |
Schema name | SimpleImport |
Element | Description |
---|---|
File | Represents the file path to the ink file to be imported. |
Data | Represents the base64-encoded ink 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>