pycatia.in_interfaces.folder

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.in_interfaces.folder.Folder(com_object)

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
InfInterfaces.FileComponent
Folder

Represents the folder object.
It allows you to manipulate folders and gives access to information about
them.
property files: Files

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Files() As Files (Read Only)

Returns the file collection of the folder.

Example:
This example retrieves in TestFiles the file collection of the folder
TestFolder.

Dim TestFiles As Files
Set TestFiles = TestFolder.Files
Return type:

Files

property sub_folders: Folders

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property SubFolders() As Folders (Read Only)

Returns the folder collection of the folder.

Example:
This example retrieves in TestSubFolders the folder colection of the
folder TestFolder.

Dim TestSubFolders As CATIAFolders
Set TestSubFolders = TestFolder.SubFolders
Return type:

Folders