Skip to main content
Participating Frequently
September 6, 2023
Question

What's the difference between Facade::ITransformFacade and kTransformPageItemsCmdBoss?

  • September 6, 2023
  • 1 reply
  • 251 views

Hi guys. I would like to know the difference in usage between Facade::ITransformFacade and kTransformPageItemsCmdBoss. Could anyone explain me about it?

This topic has been closed for replies.

1 reply

Inspiring
September 6, 2023

Facade::ITransformFacade - is just a layer or high level abstraction and provides utility functions for transformation. This will eventually call the command to perform the transformation of page items. For Eg -

 

Utils<Facade::ITransformFacade>()->TransformItems();

 

kTransformPageItemsCmdBoss - is the command that actually perform the transformation.

 

You can use anyone of them.

 

- Rahul Rastogi

Adobe InDesign SDK Plugin Architect.

dorinhoAuthor
Participating Frequently
September 7, 2023

thanks very much!