pycatia.cat_sch_platform_interfaces.sch_drop_off_view

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.cat_sch_platform_interfaces.sch_drop_off_view.SchDropOffView(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
SchDropOffView

Manage the drop off views in a schematic viewer.
add_drop_off_view(i_view: DrawingView, o_view: DrawingView, i_db2_pos_xy: tuple, i_db1_scale: float, i_db1_angl: float) tuple

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub AddDropOffView(DrawingView iView,
DrawingView oView,
CATSafeArrayVariant iDb2PosXY,
double iDb1Scale,
double iDb1Angl)

Adds a drafting view to the schematics diagram.

Parameters:

iView
pointer to drafting view to add
oView
pointer to newly added drafting in this document
iDb2PosXY
pointer to XY coordinate for placement, if NULL, the position is
the same as that of the input view.
iDb1Scale
scale of view added, if NULL, scale is assumed to be that of the
input view.
iDb1Angle
The view orientation, if NULL, orientation is assumed to be that of
the input view.

Example:

Dim objThisIntf As SchDropOffView
Dim objArg1 As DrawingView
Dim objArg2 As DrawingView
Dim dbVar3(2) As CATSafeArrayVariant
objThisIntf.AddDropOffViewobjArg1,objArg2,dbVar3,dbVar3,dbVar3
Parameters:
  • i_view (DrawingView) –

  • o_view (DrawingView) –

  • i_db2_pos_xy (tuple) –

  • i_db1_scale (float) –

  • i_db1_angl (float) –

Return type:

tuple

list_drop_off_views() SchListOfObjects

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func ListDropOffViews() As SchListOfObjects

Lists drafting views in this schematics diagram.

Parameters:

oLDropOffViews
A list of drafting views

Example:

Dim objThisIntf As SchDropOffView
Dim objArg1 As SchListOfObjects
Set objArg1 = objThisIntf.ListDropOffViews
Return type:

SchListOfObjects

remove_drop_off_view(i_view_to_remove: DrawingView) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub RemoveDropOffView(DrawingView iViewToRemove)

Removes a drafting view from the schematics diagram.

Parameters:

iViewToRemove
pointer to drafting view to remove

Example:

Dim objThisIntf As SchDropOffView
Dim objArg1 As DrawingView
objThisIntf.RemoveDropOffViewobjArg1
Parameters:

i_view_to_remove (DrawingView) –

Return type:

None