WriteXmlDefinition Method (IC1ColumnFilter2)
Writes XML definition of the filter.
The code below writes one integer filter field as xml value: The code below writes two integer filter fields as xml nodes with attributes:
// write filter field as value
xw.WriteString(_field.ToString());
// write _minimum field as xml node with attribute
xw.WriteStartElement("Minimum");
xw.WriteAttributeString("Value", _minimum.ToString());
xw.WriteEndElement();
// write _maximum field as xml node with attribute
xw.WriteStartElement("Maximum");
xw.WriteAttributeString("Value", _maximum.ToString());
xw.WriteEndElement();