#include <textops.h>
Inheritance diagram for OpApplyFullJustifyToStory:
Public Member Functions | |
OpApplyFullJustifyToStory () | |
virtual void | Do (OpDescriptor *) |
Applies full justification to selected text stories. |
Definition at line 503 of file textops.h.
|
Definition at line 508 of file textops.h.
|
|
Applies full justification to selected text stories.
Reimplemented from Operation. Definition at line 4518 of file textops.cpp. 04519 { 04520 AttrTxtJustification* ApplyAttrib = new AttrTxtJustification(); 04521 04522 if (ApplyAttrib != NULL) 04523 { 04524 ApplyAttrib->Value.justification = JFULL; 04525 AttributeManager::AttributeSelected(ApplyAttrib, NULL); 04526 } 04527 }
|