ThickSurface (Object)

Represents the ThickSurface feature.
It thicks surface using an offset element (such as a surface or a skin) and two offset values TopOffset and Botoffset. TopOffset is the offset between the offset element and the top skin of the feature. BotOffset is the offset between the offset element and the bottom skin of the feature.

Properties


Property BotOffset() As (Read Only)
Returns the value of the bottom offset.
Example:
The following example returns in botoffset the bottom offset of the thicksurface firstThickSurface:
 Set botoffset = firstThickSurface.BotOffset
 
Property OffsetSide() As (Read Only)
Returns the offset direction (defines in regards of the normal direction) .
Example:
The following example returns in offsetside the side of the ThickSurface firstThickSurface:
 Set offsetside = firstThickSurface.OffsetSide
 
Property TopOffset() As (Read Only)
Returns the value of the top offset.
Example:
The following example returns in topoffset the top offset of the ThickSurface firstThickSurface:
 Set topoffset = firstThickSurface.TopOffset
 

Methods


Sub swap_OffsetSide()
Swap the side of the offset.
Example:
The following example changes the side of the ThickSurface firstThickSurface:
 call firstThickSurface.swap_OffsetSide()