QueryResultBase.QueryTemplateOrderByPart Property
The QueryTemplateOrderByPart property of the QueryResultBase class gets or sets the ORDER BY clause of the query template used by Web Parts that derive from this class.
Namespace: Microsoft.SharePoint.Portal.WebControls
Assembly: Microsoft.SharePoint.Portal (in Microsoft.SharePoint.Portal.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
<WebPartStorageAttribute(Storage.Shared)> _
Public Property QueryTemplateOrderByPart As String
Get
Set
'Usage
Dim instance As QueryResultBase
Dim value As String
value = instance.QueryTemplateOrderByPart
instance.QueryTemplateOrderByPart = value
[BrowsableAttribute(false)]
[WebPartStorageAttribute(Storage.Shared)]
public string QueryTemplateOrderByPart { get; set; }
Property Value
Type: System.String
String that contains the ORDER BY clause of the query template used by Web Parts that derive from this class.
Remarks
Override this property to get or set default values or placeholders for the ORDER BY clause. For example, the SearchResults class sets this property to " ORDER BY %__sort_by__%," where the "%__sort_by__%" sub-string is replaced by query values at runtime.