mdlIModelClient GetObjectPickExceptionList

Gets the list of objects that are an exception in the pick context list.

Syntax

mdlIModelClient_handle GetObjectPickExceptionList

Application

MotionView Tcl Query

Description

This command retrieves the list of objects that are an exception to objects in the pick context. These can be set using the SetObjectPickExceptionList command.

Example

To get the list of objects that are an exception in the pick context list:
hwi GetSessionHandle sess1
sess1 GetProjectHandle pro1
pro1 GetPageHandle pa1 [pro1 GetActivePage]
pa1 GetWindowHandle win1 [pa1 GetActiveWindow]
win1 GetClientHandle mcl
mcl GetRootObjectHandle mo
mo InterpretEntity en Point p_0 "\"Point 0\""
en ReleaseHandle;
mcl GetObjectPickExceptionList
mcl SetObjectPickExceptionList p_0
mcl GetObjectPickExceptionList
mcl ReleaseHandle;
win1 ReleaseHandle;
pa1 ReleaseHandle;
pro1 ReleaseHandle;
sess1 ReleaseHandle;

Errors

Returns the objects in an exception list. If there is an error, an error code will be returned.