<xsd:simpleType name="standardBrushPropertyName.type">
<xsd:annotation>
<xsd:documentation>Standard brush property names http://www.w3.org/TR/InkML/#brushPropertyElement</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<!-- width of brush -->
<xsd:enumeration value="width"/>
<!-- height of brush -->
<xsd:enumeration value="height"/>
<!-- color of brush in RGB -->
<xsd:enumeration value="color"/>
<!-- transparency of brush 0-255: 0 is opaque -->
<xsd:enumeration value="transparency"/>
<!-- The type of pin tip: ellipse, rectangle, or drop. default is ellipse-->
<xsd:enumeration value="tip"/>
<!-- A value that defines how the colors of the pen and background interact. The default value is 'copyPen', which indicates that the current pen color is used.-->
<xsd:enumeration value="rasterOp"/>
<!-- The drawn ink is antialiased. Default is true -->
<xsd:enumeration value="antiAliased"/>
<!-- The ink is rendered as a series of curves versus as lines between pen sample points. Default is false -->
<xsd:enumeration value="fitToCurve"/>
<!-- If true, pressure from the pen tip is ignored and the width of the ink remains the same regardless of the pressure of the pen on the tablet surface. -->
<!-- If false, the width of the ink gets wider with increased pressure of the pen on the tablet surface. Default is false -->
<xsd:enumeration value="ignorePressure"/>
</xsd:restriction>
</xsd:simpleType> |