- See also:
Properties
- Property Angle() As
-
Returns or sets the member's angle.
- Example :
-
This example retrieves in
Anglethe angle of theSfmMemberfeature.Dim Angle As Double Set Angle = SfmMember.Angle
- Property AngleParam() As (Read Only)
- Property HorizontalAnchorPointOffset() As
-
Returns the member's horizontal anchor point offset.
- Example :
-
This example retrieves in
HAPOffsetthe horizontal anchor point offset of theSfmMemberfeature.Dim HAPOffset As Double Set HAPOffset = SfmMember.HorizontalAnchorPointOffset
- Property HorizontalAnchorPointOffsetParam() As (Read Only)
- Property VerticalAnchorPointOffset() As
-
Returns or sets the member's vertical anchor point offset.
- Example :
-
This example retrieves in
VAPOffsetthe vertical anchor point offset of theSfmMemberfeature.Dim VAPOffset As Double Set VAPOffset = SfmMember.VerticalAnchorPointOffset
- Property VerticalAnchorPointOffsetParam() As (Read Only)
Methods
- Sub Flip()
-
Flip the member's section according to X axis.
- Example :
-
This example flips the section of the
SfmMemberfeature.SfmMember.Flip
- Func GetMemberType() As
-
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
- Func GetWelds( iOperatingEle) As
-
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)
- Func IsFlip() As
-
Get the flip status of the member's section.
- Example :
-
This example retrieves in
FlipStatusthe flip status of theSfmMemberfeature.Dim FlipStatus As Boolean Set FlipStatus = SfmMember.IsFlip