| Summary: | EDITING: Wrap text button | ||
|---|---|---|---|
| Product: | LibreOffice | Reporter: | Gitsy <gitsythomas> |
| Component: | LibreOffice | Assignee: | Not Assigned <libreoffice-bugs> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | enhancement | CC: | robinson.libreoffice |
| Priority: | low | Keywords: | needsDevEval |
| Version: | 4.0.0.3 release | ||
| Hardware: | Other | ||
| OS: | All | ||
| Whiteboard: | BSA | ||
| Crash report or crash signature: | Regression By: | ||
| Attachments: | extension for wrap button | ||
|
Description
Gitsy
2013-02-21 15:08:00 UTC
As far I can see , there isn't (Tools < Customize...). Therefore I mark this as enhancement. Thanks for reporting! Because there is also a (text) Wrap function in Draw (and Writer?) I mark this bug as component 'LibreOffice'. Kind regards, Joren *** This bug has been marked as a duplicate of bug 58506 *** I think adding the following basic macros to the toolbar will do
REM ***** BASIC *****
sub Wrap
rem ----------------------------------------------------------------------
rem define variables
dim document as object
dim dispatcher as object
rem ----------------------------------------------------------------------
rem get access to the document
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
rem ----------------------------------------------------------------------
dim args1(0) as new com.sun.star.beans.PropertyValue
args1(0).Name = "WrapText"
args1(0).Value = true
dispatcher.executeDispatch(document, ".uno:WrapText", "", 0, args1())
end sub
-------------------------------------------------------------------------
REM ***** BASIC *****
sub Unwrap
rem ----------------------------------------------------------------------
rem define variables
dim document as object
dim dispatcher as object
rem ----------------------------------------------------------------------
rem get access to the document
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
rem ----------------------------------------------------------------------
dim args1(0) as new com.sun.star.beans.PropertyValue
args1(0).Name = "WrapText"
args1(0).Value = false
dispatcher.executeDispatch(document, ".uno:WrapText", "", 0, args1())
end sub
Created attachment 75692 [details]
extension for wrap button
Please see the attached extension
Migrating Whiteboard tags to Keywords: (ProposedEasyHack -> needsDevEval) [NinjaEdit] |