Click or drag to resize

IExportElementQuery Property


Gets and sets the query expression of the export.

Namespace:  Ingeniux.CMS
Assembly:  Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.5.94
Syntax
string Query { get; set; }

Property Value

Type: String
Examples
Query expression must be a valid XPath expression. Below are a few examples:
XML
"Abstract"                  The element named "Abstract" under the root element.
"/*/Abstract"                The element named "Abstract" under the root element.
"//Abstract"                The element named "Abstract" that is descendant of the root element at any level. This makes for a recursive search that is much slower.
"/*/@Timeout                The "Timeout" attribute of the root element.
"/*/FlashSlideshowComponent/Flash/@URL    The URL attribute of the Flash element, under the FlashSlideshowComponent element, under the root element.
See Also