mdlIModelClient GetStandardIncludeFile
Gets the standard include file setting for the specified profile.
Syntax
mdlIModelClient_Handle GetStandardIncludeFile arg_Profile
Application
MotionView Tcl Query
Description
This command retrieves the standard include file according to the argument passed.
Inputs
- arg_Profile
- Valid arguments are:
- User
- Settings specified for the user profile.
- Pref
- Settings specified in the preference file.
Example
hwi OpenStack
hwi GetSessionHandle sess1
sess1 GetProjectHandle pro1
pro1 GetPageHandle pa1 [pro1 GetActivePage]
pa1 GetWindowHandle win1 [pa1 GetActiveWindow]
win1 GetClientHandle mcl
set temp [mcl GetStandardIncludeFile User]
puts "The Standard Include File For User Profile Is $temp"
mcl ReleaseHandle;
win1 ReleaseHandle;
pa1 ReleaseHandle;
pro1 ReleaseHandle;
sess1 ReleaseHandle;
hwi CloseStack;
Errors
None.