GetSnapSpacing Method (IntelliCAD)

IntelliCAD 11.1 Object Library
GetSnapSpacing Method
See Also 
Xspacing
The snap spacing along the x-axis.
Yspacing
The snap spacing along the x-axis.
PViewport Object : GetSnapSpacing Method

Description

Returns the snap spacing value

Syntax

Visual Basic
Public Sub GetSnapSpacing( _
   ByRef Xspacing As Double, _
   ByRef Yspacing As Double _
) 

Parameters

Xspacing
The snap spacing along the x-axis.
Yspacing
The snap spacing along the x-axis.

Example

Sub GetSnapSpacing_Example()

     ' This example finds the current Snap spacing.

     ' First, find the current active viewport

     Dim viewportObj As IntelliCAD.Viewport

     Dim XSnap As Double

     Dim YSnap As Double

     Set viewportObj = ThisDocument.ActiveViewport

     ' Turn on Snap and reset the viewport.

     viewportObj.SnapOn = True

     ThisDocument.ActiveViewport = viewportObj

     ' Find the current Snap spacing

     viewportObj.GetSnapSpacing XSnap, YSnap

     MsgBox "X Snap Spacing = " & XSnap & " Y Snap Spacing = " & YSnap

End Sub

See Also

© 2022 IntelliCAD Technology Consortium. All Rights Reserved.