ParagraphImage.FocalPointParameters

Version: 9.6.0 string  

Summary

Returns "&x=12&y=-12"

Settings

The value relays to Image editor control used in the paragraph.

Remarks

Depends on 'Enable focal points for standard paragraphs' option in Settings-Editing-Interface settings-Paragraph.

Examples

Outputting the template tag

@GetString("ParagraphImage.FocalPointParameters")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("ParagraphImage.FocalPointParameters"); }

Outputting the template tag

<!--@ParagraphImage.FocalPointParameters-->

Check if string has a value

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