Solid Edge Geometry Type Library
IsParamReversed Property
Description
Returns a Boolean value to specify whether or not the inherent direction of the referenced object is opposed to the flow dicated by the parameterization of the underlying geometry.
Property type
Read-only property
Syntax
Visual Basic
Public Property IsParamReversed As Boolean
Example
Private Sub Form_Load()
    Dim objApp As solidedgeframework.Application
    Dim objDoc As SolidEdgepart.PartDocument
    Dim objBody As solidedgegeometry.Body
    Dim objFace As solidedgegeometry.Face
    Dim bIsParRev As Boolean
    Const TESTFILE = "T:\vbtests\testcases\FreeForm.par"
    ' 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
    Call objDoc.Close
    ' opening the testfile
    Set objDoc = objApp.Documents.Open(TESTFILE)
    ' getting the body object of the model
    Set objBody = objDoc.Models(1).Body
    ' getting a particular face from the collection of faces on the body
    Set objFace = objBody.Faces(FaceType:=igQueryAll).Item(1)
    ' checking if the inherent direction of a Face is opposed to the flow dictated by the parameterization of the underlying geometry
    bIsParRev = objFace.IsParamReversed
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objFace = Nothing
End Sub
See Also

Face Object  | Face Members

Send comments on this topic.