Outline Element

Represents an outline to be imported. The outline can be comprised of html, ink, and images.

Usage

			
<Outline width="360">
  <Html>
    <Data>
      <![CDATA[
        <html><body><p>Sample text here.</p></body></html>
       ]]>
    </Data>
  </Html>
</Outline>

		

Element Information

Namespace http://schemas.microsoft.com/office/onenote/2004/import
Schema name SimpleImport

Elements and Attributes

Parent Elements

Element Description
Object Represents an object to be added, updated, or deleted from the specified page.

Child Elements

Element Description
Html Represents html text to be imported as part of an outline object.
ImageRepresents an image to be imported.
InkRepresents ink to be imported.

Attributes

Attribute Type Required Description
widthPositiveDecimaloptionalRepresents the width of the outline, in points.

Definition

			
<xsd:element name="Outline">
  <xsd:complexType>
    <xsd:sequence>
    <xsd:choice maxOccurs="unbounded">
        <xsd:element name="Image">
          <xsd:complexType>
            <xsd:complexContent>
            <xsd:extension base="ImageContent">
                <xsd:attribute name="align">
                  <xsd:simpleType>
                    <xsd:restriction base="xsd:string">
                      <xsd:enumeration value="left"/>
                      <xsd:enumeration value="center"/>
                      <xsd:enumeration value="right"/>
                    </xsd:restriction>
                  </xsd:simpleType>
                </xsd:attribute>
              </xsd:extension>
            </xsd:complexContent>
          </xsd:complexType>
        </xsd:element>
        <xsd:element name="Ink" type="InkContent"/>
        <xsd:element name="Html" type="HtmlContent"/>
      </xsd:choice>
    </xsd:sequence>
    <xsd:attribute name="width" type="PositiveDecimal"/>
  </xsd:complexType>
</xsd:element>

		
©2003-2004 Microsoft Corporation. All rights reserved. Permission to copy, display and distribute this document is available at: http://msdn.microsoft.com/library/en-us/odcXMLRef/html/odcXMLRefLegalNotice.asp