Template syntax: Overview of switches

Hi everyone,

I’m using the tempalte syntax and the existing documentation covers everything I needed to know. I’m really glad that it exists.
There’s only a little information I haven’t found. Is there any overview of the available switches for the tags?

Best regards,
Daniel

@Daniel_Krueger Different placeholders have different set of switches. All they are described in the appropriate documentation article. For example switches of <<doc ...>> placeholder is described here:
https://docs.aspose.com/words/net/inserting-documents-dynamically/
Switches of <<image ...>> placeholder are described here:
https://docs.aspose.com/words/net/inserting-images-dynamically/

Thanks. In case someone else is interested in an overview of the switches. I looked through all pages and I hope I didn’t miss something

https://docs.aspose.com/words/net/inserting-documents-dynamically/

<<doc [document_expression] -sourceStyles>>
<<doc [document_expression] -inline>>
<<doc [document_expression] -build>>

https://docs.aspose.com/words/net/outputting-expression-results/

<<[expression]:"format" -html>>

https://docs.aspose.com/words/net/outputting-sequential-data/

<<foreach [m in ds.Managers]>><<[m.Name]>><</foreach -greedy>>

https://docs.aspose.com/words/net/using-conditional-blocks/

<<if [false]>>Content to remove<</if -greedy>>

https://docs.aspose.com/words/net/inserting-images-dynamically/

<<image [image_expression] -keepRatio>>
<<image [image_expression] -fitHeight>>
<<image [image_expression] -fitWidth>>
<<image [image_expression] -fitSize>>
<<image [image_expression] -fitSizeLim>>

https://docs.aspose.com/words/net/merging-table-cells-dynamically/

<<cellMerge -horz>>
<<cellMerge -both>>
1 Like