Examples:
The following VBA example sets the drawing scale to 2:1 and creates a 2" × 2" rectangle, which is represented as a 1" × 1" rectangle in CorelDRAW.
Sub Test()
ActiveDocument.WorldScale = 0.5
ActiveDocument.ActiveLayer.CreateRectangle 0, 0, 2, 2
End Sub