totalDigits Property
[This feature was only implemented for MSXML 6.0.]
Returns a variant of type VT_BSTR. This variant indicates the maximum number of in a value. This total includes the digits in the fraction portion of the value. For more information about the totalDigits
facet, see Data Type Facets.
JScript Syntax
var varTotalDigits = oISchemaType.totalDigits;
Parameters
None.
Return Values
varTotalDigits
A variant. The totalDigits
facet of the restriction.
Example
The following snippet is taken from the Walk the SOM sample application. In this snippet, the totalDigits
propertyis retrieved from the ISchemaType
object.
If oType.totalDigits > -1 Then
res = res + printTab(t+1) + "<xsd:totalDigits value='" & oType.totalDigits & "'/>" + vbNewLine
End If
Visual Basic Syntax
varTotalDigits = oISchemaType.totalDigits
Parameters
None.
Return Values
varTotalDigits
A variant. The totalDigits
facet of the restriction.
C/C++ Syntax
HRESULT get_totalDigits (VARIANT* totalDigits);
Parameters
totalDigits[out,retval]
A variant. The value of the totalDigits
facet.
Return Values
S_OK
The value returned if successful.
E_POINTER
The value returned if the totalDigits
parameter is NULL.
E_FAIL
The value returned if something else is wrong.
Note
If the facet is not used, the property will return "-1".
Versioning
Implemented in: MSXML 6.0