#include <textops.h>
Inheritance diagram for OpApplyCentreJustifyToStory:
Public Member Functions | |
OpApplyCentreJustifyToStory () | |
virtual void | Do (OpDescriptor *) |
Applies centre justification to selected text stories. |
Definition at line 467 of file textops.h.
|
Definition at line 472 of file textops.h.
|
|
Applies centre justification to selected text stories.
Reimplemented from Operation. Definition at line 4476 of file textops.cpp. 04477 { 04478 AttrTxtJustification* ApplyAttrib = new AttrTxtJustification(); 04479 04480 if (ApplyAttrib != NULL) 04481 { 04482 ApplyAttrib->Value.justification = JCENTRE; 04483 AttributeManager::AttributeSelected(ApplyAttrib, NULL); 04484 } 04485 }
|