MarkerShowInfoWindowAction

Version: - string  

Summary

Returns the marker action (e.g. dbclick)

Settings

The value is based on the Activation field in the paragraph module settings.

(Page - Paragraph - Module - Marker settings - Activation)

Examples

Outputting the template tag

@GetString("MarkerShowInfoWindowAction")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("MarkerShowInfoWindowAction"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("MarkerShowInfoWindowAction"); }

Outputting the template tag

<!--@MarkerShowInfoWindowAction-->

Check if string has a value

<!--@If Defined(@MarkerShowInfoWindowAction)--> Let's output this tag here: <strong><!--@MarkerShowInfoWindowAction--></strong> <!--@EndIf(@MarkerShowInfoWindowAction)-->