== operator (SDL script)
This operator tests for equality in a conditional statement.
You can use = instead.
In this example, the text 'static ' is generated only if the Access property equals 'private'.
%if %custom "Access" == "Private" %then
"static "
%endif