pycatia.structure_interfaces.str_nibbling_feature

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.structure_interfaces.str_nibbling_feature.StrNibblingFeature(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
StrNibblingFeature

Represents a Nibbling Feature.
Type, SubType and Extrapolation Offset can be defined for this nibbling
feature.
get_offset_for_extrapolate(i_offset_for_extrapolate: str) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Sub GetOffsetForExtrapolate(CATBSTR 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”)


Copyright © 1999-2011, Dassault Systèmes. All rights
reserved.
Parameters:

i_offset_for_extrapolate (str) –

Return type:

None

property sub_type: str

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property SubType() As CATBSTR

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”
Return type:

str

property type: str

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property Type() As CATBSTR

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”
Return type:

str