Command: AutEdTabNameGet
- Updated2024-09-12
- 2 minute(s) read
Command: AutEdTabNameGet
Command: AutEdTabNameGet
Returns the name of a file that is loaded in the script editor.
Input Parameters
![]() |
Specifies the index of a file that is open in the script editor. |
Return Parameters
![]() |
Receives the name of the file in the script editor. The return value is a AutEdTabName type. |
Example
The following example displays the names of all the files open in the script editor.
VBScript | Python |
Dim strMsg, intLoop, MyAutEdTabName Call AutEdInfoGet() strMsg = "List of open files: " & VbCrLf For intLoop = 0 to AutEdNoFiles -1 MyAutEdTabName = AutEdTabNameGet(intLoop) strMsg = strMsg & MyAutEdTabName & VbCrLf Next Call MsgBoxDisp(strMsg)
Related Topics
Command: AutEdCloseAll | Command: AutEdEncode | Command: AutEdFileNew | Command: AutEdFileOpen | Command: AutEdInfoGet | Command: AutEdOpenDlg | Command: AutEdSaveAsDlg | Command: AutEdTabActivate | Command: AutEdTabSave | Command: AutEdTypeLibAdd | Command: AutEdTypeLibDlg | Command: AutEdWSOpen | Command: AutEdWSSave