pycatia.cat_str_functional_interfaces.sfm_member

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.cat_str_functional_interfaces.sfm_member.SFMMember(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
CATStrFunctionalInterfaces.SfmObject
CATStrFunctionalInterfaces.SfmProfile
SfmMember

Interface to manage the structure frame modeling member object Role: Allows
accessing and setting of member’s data.

See also:
SfmFactory
flip() None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub Flip()

Flip the member’s section according to X axis.

Example:
This example flips the section of the SfmMember
feature.

SfmMember.Flip
Return type:

None

get_member_type() str

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func GetMemberType() As CATBSTR

Returns the Type of Member (SfmMemberPointLength, SfmMemberPointLimit, SfmMember2Points,
SfmMemberCurve,SfmMemberMembersPlane,SfmMemberSurfSurf)

Example:
This example retrieves the Type of Existing Member.

Dim Name As String
Name = SfmMemberObj.GetMemberType
Return type:

str

get_welds(i_operating_ele: Reference) SFMWelds

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func GetWelds(Reference iOperatingEle) As SfmWelds

Returns the weld features on the Existing Member.

Example:
This example retrieves the number of weld features on the Existing
Member.

Dim DeckMember1 As SfmMember
Set DeckMember1 = SelctionObj.FindObject(“CATIASfmMember”)
Dim OperatedMemberObject As SfmMemberObject
Set OperatedMemberObject = DeckMember1.GetItem(“SfmMemberObject”)
Dim Welds As SfmWelds
Set Welds = OperatedMemberObject.GetWelds(Nothing)
Parameters:

i_operating_ele (Reference) –

Return type:

SFMWelds

is_flip() bool

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func IsFlip() As boolean

Get the flip status of the member’s section.

Example:
This example retrieves in FlipStatus the flip status of the SfmMember
feature.

Dim FlipStatus As Boolean
Set FlipStatus = SfmMember.IsFlip
Return type:

bool