#include <textops.h>
Inheritance diagram for OpApplyRightJustifyToStory:
Public Member Functions | |
OpApplyRightJustifyToStory () | |
virtual void | Do (OpDescriptor *) |
Applies right justification to selected text stories. |
Definition at line 485 of file textops.h.
|
Definition at line 490 of file textops.h.
|
|
Applies right justification to selected text stories.
Reimplemented from Operation. Definition at line 4497 of file textops.cpp. 04498 { 04499 AttrTxtJustification* ApplyAttrib = new AttrTxtJustification(); 04500 04501 if (ApplyAttrib != NULL) 04502 { 04503 ApplyAttrib->Value.justification = JRIGHT; 04504 AttributeManager::AttributeSelected(ApplyAttrib, NULL); 04505 } 04506 }
|