Solid Edge Geometry Type Library
Continuity Property
Description
Returns the continuity of the referenced object.
Property type
Read-only property
Syntax
Visual Basic
Public Property Continuity As Long
Remarks
This property returns the highest level of geometric continuity the surface possesses. For example, if the surface is G1 continuous everywhere, but not G2 continuous at a specific location, this method returns the level as 1, indicating a G1 continuous surface. Typically, a surface will not count itself as any higher than G3 continuous even if it is continuously differentiable beyond the third derivative. Methods in this interface deal with derivatives only as high as the third. Moreover, if the server cannot determine, or has difficulty determining, its true, highest-continuity rating, it will return a lower level of which it is certain.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objBody As SolidEdgeGeometry.Body
    Dim objEdge As SolidEdgeGeometry.Edge
    Dim lngContinuity As Long
    ' 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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' creating the base feature
    If CreateModel(objDoc) <> "" Then
        MsgBox "Error creating the model"
        Exit Sub
    End If
    ' getting the body object of the model
    Set objBody = objDoc.Models(1).Body
    'getting an edge from the edges collection of the body object
    Set objEdge = objBody.Edges(EdgeType:=igQueryAll).Item(1)
    ' getting the continuity value for an edge
    lngContinuity = objEdge.Continuity
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objEdge = Nothing
End Sub
See Also

Edge Object  | Edge Members

Send comments on this topic.