Open
Opens a Graphic Component.
Syntax:
Void Open(String GraphicName );
Opens a Graphic Document passed in the parameter.
Void Open(String GraphicName, Dictionary < string, string > tags );
Opens a Graphic Document that will have the ScreenTag value setted with the Tag passed in the parameter.
Void Open(String GraphicName, string Tag );
Opens a Graphic Document that will have the ScreenTag value setted with the Tag passed in the parameter.
Params:
String GraphicName : A String parameter containing the Graphic Document name that will be opened.
String Tag : A string parameter containing the tag name that will be setted to the ScreenTag of opened document.
Dictionary< string, string > Tags : A parameter containing a Dictionary composed by the name of destiny ScreenTag and the name of the tag desired.
Example:
Open the graphic document named 'main'.
SVGraphics.Open("main");
|