You are viewing limited content. For full access, please sign in.

Question

Question

Creating Document Short Cuts using SDK

asked on November 2, 2017

How do I create a short cut to a document using SDK call please?

 

Thanks

Priya

0 0

Replies

replied on November 2, 2017 Show version history

Use the Shortcut class with the Create method

Shortcut.Create("\\PATH", [EntryID], [EntryNameOption], [Session]);

For example,

Shortcut.Create("\\Folder\\Shortcut", 12345, EntryNameOption.AutoRename, mySess);

This can be done using FolderInfo object, a name string, and an EntryInfo object instead of just a full string path and the ID.

If you search "Shortcut" in the SDK documentation you should find everything you'll need.

 

 

1 0
replied on November 2, 2017

Thanks!

 

Priya

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.