Heiko Rompel wrote:

> Moin,
> 
> wie und wo kann ich einstellen, das beim
> Bearbeiten/Inhalte einfügen (STRG+UMSCHALT+V)
> als Standard "Unformatierter Text" gewählt wird?

Eine solche Funktion gibt es "einzeln" nicht. Man kann sich mit einem
Makro behelfen und das auf diesen Shortcut legen:

sub PasteUnformatted

dim document   as object
dim dispatcher as object
document   = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
dim args1(0) as new com.sun.star.beans.PropertyValue
args1(0).Name = "SelectedFormat"
args1(0).Value = 1
dispatcher.executeDispatch(document, ".uno:ClipboardFormatItems", "", 0,
args1())

end sub

Ciao,
Mathias

-- 
Mathias Bauer - OpenOffice.org Application Framework Project Lead
Please reply to the list only, [EMAIL PROTECTED] is a spam sink.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Antwort per Email an