DwSearchResultWeightCount

Version: - double  

Summary

Returns the relevance of the current result item expressed in count.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDouble("DwSearchResultWeightCount")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

@if(!double.IsNullOrWhiteSpace(GetDouble("DwSearchResultWeightCount"))) {
@* Tag has value, so let's do something useful here. *@
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Assign tag to a value for later use

@{
double storedTag = GetDouble("DwSearchResultWeightCount");
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Outputting the template tag

<!--@DwSearchResultWeightCount-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if double has a value

<!--@If Defined(@DwSearchResultWeightCount)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX