AddMagnifier Method
The AddMagnifier method adds an AutoGraphMagnifier Object to the AutoMagnifiers Collection of the AutoGraph Object. Returns an AutoGraphMagnifier Object.
Syntax
object.AddMagnifier(left, top, right, bottom, id)
Parameter | Type | Description |
left | Double | required, left side of Area Selection Box in page coordinates |
top | Double | required, top of Area Selection Box in page coordinates |
right | Double | required, right side of Area Selection Box in page coordinates |
bottom | Double | required, bottom of Area Selection Box in page coordinates |
id | Variant | Optional, Name of item in the object manager |
Example
This example shows how to add a Magnifier to an AutoGraph object.
'Declares GraphMagnifier as an object
Dim GraphMagnifier As Object
'Create a magnifier object
Set GraphMagnifier = LineGraph.AddMagnifier(4.681,4.984,6.291,3.29)
Used by: AutoGraph Object