I'm sorry if this is very simple, but is there a way to set the X, Y position of a drawing view? Online is says that you can use swView.Position = value, but I don't understand how to set "value" as the position I would like to place the drawing view.
Hi Kevin,
The position is displayed by X and Y coordinates. The value (returned by View::Position) is an array of 2 doubles. In VBA, you can do it like this: -
dim dArr(1) as double
dArr(0) = XPositionOfView
dArr(1) = YPositionOfView
dim vPos as variant
vPos = dArr
View.Position = vPos
Hope it helps!!!
Rajat Jain