#include <textops.h>
Inheritance diagram for OpApplyLeftJustifyToStory:
Public Member Functions | |
OpApplyLeftJustifyToStory () | |
virtual void | Do (OpDescriptor *) |
Applies left justification to selected text stories. |
Definition at line 449 of file textops.h.
|
Definition at line 454 of file textops.h.
|
|
Applies left justification to selected text stories.
Reimplemented from Operation. Definition at line 4455 of file textops.cpp. 04456 { 04457 AttrTxtJustification* ApplyAttrib = new AttrTxtJustification(); 04458 04459 if (ApplyAttrib != NULL) 04460 { 04461 ApplyAttrib->Value.justification = JLEFT; 04462 AttributeManager::AttributeSelected(ApplyAttrib, NULL); 04463 } 04464 }
|