com.crystaldecisions.sdk.plugin.desktop.shortcut
Interface IShortcutBase

All Known Subinterfaces:
IShortcut

public interface IShortcutBase

This interface is used to return the object that it references so that it can gain access to all of the target object's properties and methods. These properties and methods are used on the shortcut object itself, and not the object it refers to.


Field Summary
static java.lang.String KIND
           The Kind used to query for Shortcut objects.
static java.lang.String PROGID
          The ProgID for the Shortcut Class.
 
Method Summary
 int getTargetID()
           Returns the ID of the target object.
 void setTargetID(int Id)
           Sets the ID of the target object.
 

Field Detail

KIND

static final java.lang.String KIND

The Kind used to query for Shortcut objects.

See Also:
Constant Field Values

PROGID

static final java.lang.String PROGID

The ProgID for the Shortcut Class.

ProgIDCrystalEnterprise.Shortcut
Query CategoryCI_INFOOBJECTS
Associated Interfacecom.crystaldecisions.sdk.plugin.desktop.shortcut.IShortcut

Query syntax:

SELECT
SI_ALIAS_TARGETID
FROM
CI_INFOOBJECTS
WHERE
SI_PROGID='CrystalEnterprise.Shortcut'

The CePropertyIDs named in the SELECT statement are those that are required to access data through the IShortcut interface. For more information on their associations with the interface's methods, see IShortcut

See Also:
Constant Field Values
Method Detail

getTargetID

int getTargetID()

Returns the ID of the target object.

Returns:
An int specifying the ID of the target object.
InfoObject properties to query for:
SI_ALIAS_TARGETID

setTargetID

void setTargetID(int Id)

Sets the ID of the target object.

Parameters:
Id - An int specifying the ID of the target object.