FlexPivot for WinForms
WriteXmlDefinition メソッド (IC1ColumnFilter2)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > IC1ColumnFilter2 インターフェース : WriteXmlDefinition メソッド
The instance of the System.Xml.XmlWriter which used to write xml filter definition.
Writes XML definition of the filter.
シンタックス
'宣言
 
Sub WriteXmlDefinition( _
   ByVal xw As System.Xml.XmlWriter _
) 
void WriteXmlDefinition( 
   System.Xml.XmlWriter xw
)

パラメータ

xw
The instance of the System.Xml.XmlWriter which used to write xml filter definition.
使用例
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();
参照

IC1ColumnFilter2 インターフェース
IC1ColumnFilter2 メンバ