|
Description
|
Adds a new view to the drawing.
|
|
Syntax
|
[form.]DXFReader.AddView (ViewName As String, [X1 As Single], [Y1 As Single], [X2 As Single], [Y2 As Single])
|
|
Remarks
|
If X1, Y1, X2 and Y2 parameters are omitted the current view is added. If the view indicated by the ViewName parameter exists the Error event is fired with ErrorCode = 201.
The parameters for the AddView method are described below:
| ViewName | The name of the view to add | | X1 | (Optional) X coordinate of the lower-left corner of the view (Default value = 0) | | Y1 | (Optional) Y coordinate of the lower-left corner of the view (Default value = 0) | | X2 | (Optional) X coordinate of the upper-right corner of the view (Default value = 0) | | Y2 | (Optional) Y coordinate of the upper-right corner of the view (Default value = 0) |
|