Solid Edge FrameworkSupport Type Library
Scale Method
Specifies the factor by which the referenced object is to be scaled.
Description
Scales the referenced object by a specified factor.
Syntax
Visual Basic
Public Sub Scale( _
   ByVal Factor As Double _
) 
Parameters
Factor
Specifies the factor by which the referenced object is to be scaled.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objEllpArc1 As SolidEdgeFrameworkSupport.EllipticalArc2d
    Dim dblStrt As Double
    Dim dblFin As Double
    Dim temp As Double
    ' Report errors
    Const PI = 3.14159265358979
    ' Create/get the application with specific settings
    On Error Resume Next
    Set objApp = GetObject(, "SolidEdge.Application")
    If Err Then
        Err.Clear
        Set objApp = CreateObject("SolidEdge.Application")
        Set objDoc = objApp.Documents.Add("SolidEdge.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    'getting the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'Create an EllipticalArc object
    dblStrt = 180 * PI / 180
    dblFin = 230 * PI / 180
    Set objEllpArc1 = objSheet.EllipticalArcs2d.AddByCenter(xCenter:=0.25, yCenter:=0.25, _
                                                            xMajoraxis:=0.05, yMajoraxis:=0, Ratio:=0.5, _
                                                            Orientation:=0, StartAngle:=dblStrt, EndAngle:=dblFin)
    ' Increase the Size of the EllipticalArc object using Scale
    temp = objEllpArc1.Scale(Factor:=2)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objEllpArc1 = Nothing
End Sub
See Also

EllipticalArc2d Object  | EllipticalArc2d Members

Send comments on this topic.