A face fillet shape is built between two faces with a fillet radius.
Properties
- Property FirstFace() As
-
Returns or sets the first limiting face.
To set the property, you can use the following object: .- Example:
- The following example returns in face1 the first
limiting face of the
face fillet firstFaceFillet,
and then sets it to NewFace1:
Set face1 = firstFaceFillet.FirstFace firstFaceFillet.FirstFace = NewFace1
- Property Radius() As (Read Only)
-
Returns the face fillet radius.
- Example:
- The following example returns in radius the fillet radius
of the face fillet firstFaceFillet:
Set radius = firstFaceFillet.Radius
- Property SecondFace() As
-
Returns or sets the second limiting face.
To set the property, you can use the following object: .- Example:
- The following example returns in face2 the second
limiting face of the
face fillet firstFaceFillet,
and then sets it to NewFace2:
Set face2 = firstFaceFillet.SecondFace firstFaceFillet.SecondFace = NewFace2