Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

TotalDigits Defines the maximum number of digits allowable for a datatype derived from decimal

<xsd:element name="money">   <xsd:simpleConent>    <xsd:restriction base="xsd:decimal">     <xsd:totalDigits value="4"/>     <xsd:fractionDigits value="2"/>    </xsd:restriction>   </xsd:simpleContent> </xsd:element>