How to show a drawing conditionally

T

ThomasAJ

I only want to show a drawing under certain conditions. Can someone give me a
pointer.
 
G

Greg Maxey

You could save the drawing as an AUTOTEXT entry. Then display it under
conditions set in an IF field.

Say you create an AUTOTEXT entry of your drawing as "myDrawing" and you have
a bookmark named "TestCondtion"

{ IF {TestCondition}="True"{AutoText myDrawing }""}
 
Top