IExportElementQuery Property
|
Gets and sets the query expression of the export.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxstring Query { get; set; }Property Query As String
Get
Set
property String^ Query {
String^ get ();
void set (String^ value);
}abstract Query : string with get, set
Property Value
String
Example
Query expression must be a valid XPath expression. Below are a few examples:
"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