pycatia.part_interfaces.draft_domains

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-06-11 12:40:47.360445

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.part_interfaces.draft_domains.DraftDomains(com_object)

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
DraftDomains

The collection of draft domains used by the draft shape.
item(i_index: cat_variant) DraftDomain

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384))
o Func Item(CATVariant iIndex) As DraftDomain

Returns a draft domain using its index or its name from the DraftDomains
collection.

Parameters:

iIndex
The index or the name of the draft domain to retrieve from the
collection of draft domains. As a numerics, this index is the rank of the draft
domain in the collection. The index of the first draft domain in the collection
is 1, and the index of the last draft domain is Count. As a string, it is the
name you assigned to the draft domain using the

AnyObject.Name property.
Returns:
The retrieved draft domain

Example:
The following example returns in domain the third draft domain of
the firstDraftDomains collection:

Set domain = firstDraftDomains.Item(3)
Parameters:

i_index (cat_variant) –

Return type:

DraftDomain