2.325.11 DataSet.WidthSensitivity

The DataSet.WidthSensitivity element specifies whether data in a DataSet is width-sensitive. This element is optional. If this element is present, its value MUST be one of the following:

Auto (default): The width-sensitivity setting is autoderived by querying the data provider. If the data provider does not support autoderivation, this value is interpreted as false.

True: Data in the dataset is width-sensitive.

False: Data in the dataset is width-insensitive.

If this element is not present, its value is interpreted as "Auto".

Following is the parent element of the DataSet.WidthSensitivity element.

Parent elements

DataSet

The following is the XML Schema definition of the DataSet.WidthSensitivity element.

 <xsd:element name="WidthSensitivity" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="True" />
       <xsd:enumeration value="False" />
       <xsd:enumeration value="Auto" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>