Click or drag to resize
MacroProcessor.ProcessMacros Method
Replaces macros with given replacement or resolves them if replacement is null.

Namespace: CMS.MacroEngine
Assembly: CMS.MacroEngine (in CMS.MacroEngine.dll) Version: 12.0.0
Syntax
C#
public static bool ProcessMacros(
	IDataContainer data,
	Func<MacroProcessingContext, string, string> lambda,
	List<string> type = null,
	bool processOpenExpressions = true
)

Parameters

data
Type: CMS.Base.IDataContainer
Object to process
lambda
Type: System.Func<MacroProcessingContext, String, String>
Lambda expression called on each macro
type (Optional)
Type: System.Collections.Generic.List<String>
Type of the macro to resolve (if null, all types are resolved).
processOpenExpressions (Optional)
Type: System.Boolean
If true, open expressions such as {% if (true) { %} any HTML code {%}%} are processed

Return Value

Type: Boolean
See Also