var oCreator = Pm.CreateView(oFrom, sViewPath, sViewPars, sFramePars);
oCreator.Open();
oFrom | (Object) The object, which will mediate the opening of the viewer.
The object specifies the origin of the path, the relative position of the vindow, the parent, etc.. - The value null means the usage of:
- If the the PmgFrame object is entered here (in the script of the Pmg object), then the viewer opens in this frame.
- If the the PmaPanel object is entered here (in the script of the Pma object), then the viewer opens in this selected object.
See the PmViewCreator.From property. | ||
---|---|---|---|
sViewPath | (String) Path (relative or absolute) to the object or component whose viewer will be opened.
See the PmViewCreator.ViewPath property. | ||
sViewPars | (String) Viewer parameters (they differ for various viewer types)
Entries are in the KeyVal format, for example "name1:value1;name2:value2;". See the PmViewCreator.View property. Viewer parameters:
| ||
sFramePars | (String) Parameters for the frame where the viewer will be displayed
Entries are in the KeyVal format, for example "target:_blank;". See the PmViewCreator.Frame property. |
var oCreator = Pm.CreateView(null, "/Web/Dir", "file:page.htm", "target:_blank;");
oCreator.Open();