ConstRadEdgeFillet (Object)

Represents the edge fillet shape with a constant radius.
The resulting shape is made up of edge fillets built with a constant radius.

Properties


Property ObjectsToFillet() As (Read Only)
Returns the collection of reference elements to be filleted.
Example:
The following example returns in elements the reference elements to be filleted of the constant radius edge fillet firstCstEdgeFillet:
 Set elements = firstCstEdgeFillet.ObjectsToFillet
 
Property Radius() As (Read Only)
Returns the edge fillet constant radius.
Example:
The following example returns in radius the radius of the constant radius edge fillet firstCstEdgeFillet:
 Set radius = firstCstEdgeFillet.Radius
 

Methods


Sub AddObjectToFillet( iObjectToFillet)
Adds a new sub-element to be filleted. This sub-element is usually an edge.
Parameters:
iObjectToFillet
The sub-element to be filleted
The following object is supported: .
Example:
The following example adds a new geometrical element element to be filleted by the constant radius edge fillet firstCstEdgeFillet:
 firstCstEdgeFillet.AddObjectToFillet(element)
 
Func SwitchToVarFilletType() As
Changes the type of EdgeFillet to variable EdgeFillet and return it.
Parameters:
opVarFillet
The opVarFillet is the variable edge fillet
Sub WithdrawObjectToFillet( iObjectToWithdraw)
Withdraws a sub-element from those to be filleted. This sub-element is usually an edge.
Parameters:
iObjectToWithdraw
The sub-element to withdraw
The following object is supported: .
Example:
The following example withdraws the geometrical element element from those to be filleted by the constant radius edge fillet firstCstEdgeFillet:
 firstCstEdgeFillet.WithdrawObjectToFillet(element)