StrNibblingFeature (Object)

Represents a Nibbling Feature.
Type, SubType and Extrapolation Offset can be defined for this nibbling feature.

Properties


Property SubType() As
Returns or Sets Nibbling SubType on Current Nibbling.
Example:
 
  Dim NibblingFeature As StrNibblingFeature
  Set NibblingFeature = FeatureFactory.AddNibbling(List, "Remove")
  Dim NibbSubType As String
  NibbSubType = NibblingFeature1.SubType
 'Set the SubType
  NibblingFeature1.SubType ="ButtButt"
 
Property Type() As
Returns or Sets Nibbling Type on Current Nibbling.
Example:
 
  Dim NibblingFeature As StrNibblingFeature
  Set NibblingFeature = FeatureFactory.AddNibbling(List, "Remove")
  Dim NibbType As String
  NibbType = NibblingFeature1.Type
  'Set the Type
  NibblingFeature1.Type ="LongPoint"
 

Methods


Sub GetOffsetForExtrapolate( iOffsetForExtrapolate)
Sets the Extrapolation offset value on Current Nibbling Feature.
Parameters:
iOffsetForExtrapolate
[in] Default Value:"5mm"
Returns:
S_OK if everything ran ok.
Example
:
This example Applies Extrapolation offset.
  Dim NibblingFeature As StrNibblingFeature
  Set NibblingFeature = FeatureFactory.AddNibbling(List, "Remove")
  NibblingFeature.GetOffsetForExtrapolate("0mm")