Where would the bool value for kPasteTextCmdBoss be documented?
The kPasteTextCmdBoss implements a IBoolData interface. Where would I find this value documented?
The only places I can find that mention it list it as 'Undocumented'
The kPasteTextCmdBoss implements a IBoolData interface. Where would I find this value documented?
The only places I can find that mention it list it as 'Undocumented'
IBoolData means ignoreAttributes, default value is kFalse.
kPasteTextCmd usually should not be created directly -- instead use ITextModelCmds::PasteCmd().
InterfacePtr<ITextModelCmds> textModelCmd(textModel, UseDefaultIID());
InterfacePtr<ICommand> pasteCmd(textModelCmd->PasteCmd(position, pasteData));
CmdUtils::ProcessCommand(pasteCmd);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.