@page IOXMLInformationFormat VTK XML Reader/Writer Information Format @tableofcontents # Overview # The vtk xml data file readers / writers store certain `vtkInformation` entries that are set on `vtkAbstractArray`'s `GetInformation()` object. Support is currently limited to numeric and string information keys, both single- and vector-valued. Only the information objects attached to arrays are written/read. # Array Information # Array information is embedded in the `` XML element as a series of `` elements. The required attributes `name` and `location` specify the name and location strings associated with the key -- for instance, the `vtkDataArray::UNITS_LABEL()` key has `name="UNITS_LABEL"` and `location="vtkDataArray"`. The `length` attribute is required for vector keys. ``` [...] [...] [...] ``` Specific examples of supported key types: ### vtkInformationDoubleKey ### ``` 1 ``` ### vtkInformationDoubleVectorKey ### ``` 1 90 260 ``` ### vtkInformationIdTypeKey ### ``` 5 ``` ### vtkInformationStringKey ### ``` Test String! Line2 ``` ### vtkInformationIntegerKey ### ``` 408 ``` ### vtkInformationIntegerVectorKey ### ``` 1 5 45 ``` ### vtkInformationStringVectorKey ### ``` First Second (with whitespace!) Third (with newline!) ``` ### vtkInformationUnsignedLongKey ### ``` 9 ```