All Frameworks Object Hierarchy This Framework Indexes
The active document and the active window are two key objects for the application you can access using the ActiveDocument and ActiveWindow properties respectively. The active window is the window the end user is currently working in, and the active document is the document displayed in this active window and that the end user is being editing. This document sets its workshop, that is the available menus and toolbars that make it possible to edit it, according to its type.
When you create or use macros for in-process access, the application is always referred to as CATIA.
o Property ActiveDocument( | ) As (Read Only) |
Dim ActiveDoc As Document Set ActiveDoc = CATIA.ActiveDocument
o Property ActivePrinter( | ) As |
Dim ActivePrinter As Printer Set ActivePrinter = CATIA.ActivePrinter
o Property ActiveWindow( | ) As (Read Only) |
Dim ActiveWin As Window Set ActiveWin = CATIA.ActiveWindow
o Property CacheSize( | ) As |
LocalCacheSize= 10 CATIA.CacheSize = LocalCacheSize
o Property Caption( | ) As |
Title = CATIA.Caption
The returned value is like this:
CNext
o Property DisplayFileAlerts( | ) As |
CATIA.DisplayFileAlerts = False
o Property Documents( | ) As (Read Only) |
Dim DocCollection As Documents Set DocCollection = CATIA.Documents
o Property FileSearchOrder( | ) As |
PathConcatenation = "/u/users/fbq/db/model:/u/users/psr/db/model" CATIA.FileSearchOrder = PathConcatenation
o Property FileSystem( | ) As (Read Only) |
Dim AppliFileSys As FileSystem Set AppliFileSys = CATIA.FileSystem
o Property FullName( | ) As (Read Only) |
ApplicationFullName = CATIA.FullName
The returned value is like this:
\\lisa\cxr1arel\bsf\alpha_a\code\bin\CNEXT.exe
o Property HSOSynchronized( | ) As |
Valid values are:
CAUTION: If you use the False value of this property, you must make sure to reset it to True for CATIA's CSO to reflect properly the changes made in Automation Selection. For example, it should be reset to True before interactive parts of your script: MsgBox, InputBox calls, VBA forms updates and so on.
o Property Height( | ) As |
CATIA.Height = 300
o Property Interactive( | ) As |
CATIA.Interactive = True
o Property Left( | ) As |
CATIA.Left = 150
o Property LocalCache( | ) As |
LocalCachePath= "/tmp/cache" CATIA.LocalCache = LocalCachePath
o Property Path( | ) As (Read Only) |
ApplicationPath = CATIA.Path
The returned value is like this:
\\lisa\cxr1arel\bsf\alpha_a\code\bin
o Property Printers( | ) As (Read Only) |
Dim PrintersCollection As Windows Set PrintersCollection = CATIA.Printers
o Property RefreshDisplay( | ) As |
CATIA.RefreshDisplay = False
o Property StatusBar( | ) As |
Text = CATIA.StatusBar
The returned value is like this:
Welcome to CATIA CxR1
o Property SystemConfiguration( | ) As (Read Only) |
o Property SystemService( | ) As (Read Only) |
Dim AppliSysSer As SystemService Set AppliSysSer = CATIA.SystemService
o Property Top( | ) As |
CATIA.Top = 50
o Property Visible( | ) As |
CATIA.Visibility = True
o Property Width( | ) As |
CATIA.Width = 350
o Property Windows( | ) As (Read Only) |
Dim WinCollection As Windows Set WinCollection = CATIA.Windows
o Func CreateSendTo( | ) As |
o Func FileSelectionBox( | iTitle, | |
iExtension, | ||
iMode) As |
filepath = CATIA.FileSelectionBox("Select a text file", "*.txt", CatFileSelectionModeOpen) CATIA.SystemServices.Print "The selected file is " & filepath
o Func GetWorkbenchId( | ) As |
o Sub Help( | iHelpID) |
CATIA.Help("HelpKey")
o Sub Quit( | ) |
CATIA.Quit()
o Sub StartCommand( | iCommandId) |
o Sub StartWorkbench( | iworkbenchId) |
Copyright © 2003, Dassault Systèmes. All rights reserved.