CustomHooksOnAfterPasteSpecial Method |
This method is invoked after a Page gets copied via special command. On CMS UI, the Paste Special command is executed via drag and drop with "Alt" key instead "Ctrl" key pressed.
The "Paster Special" command at the core is just a copy command, which this hook method invoked.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux_API_Extensions_Development_Harness (in Ingeniux_API_Extensions_Development_Harness.dll) Version: 10.3.169
Syntax public void OnAfterPasteSpecial(
IPage sourcePage,
IPage newPage,
IPage targetPage,
EnumCopyActions relation,
IUserWriteSession session
)
Parameters
- sourcePage
- Type: IPage
The Page that was copied - newPage
- Type: IPage
The new Page created, that was the clone of the source Page - targetPage
- Type: IPage
The target reference location Page - relation
- Type: EnumCopyActions
The position relative to the target reference Page - session
- Type: IUserWriteSession
The session that must be used to perform tasks on additional objects
Implements
IPageHooks.OnAfterPasteSpecial(IPage, IPage, IPage, EnumCopyActions, IUserWriteSession)Remarks When this action is invoked, the objects involved have yet to be saved to the Content Store.
See Also