2020-12-20

173: The Specifications of Writer '.uno:DelToEndOfSentence'

<The previous article in this series | The table of contents of this series | The next article in this series>

A UNO dispatch command that deletes the characters from the text cursor to the head of the next sentence, basically

Topics


About: UNO (Universal Network Objects)
About: LibreOffice
About: Apache OpenOffice
About: Writer

The table of contents of this article


Starting Context


  • The reader has knowledge of what 'UNO dispatch command' is and how to call one (if the URL and the arguments of the command are clear).

Target Context


  • The reader will know the specifications of the UNO dispatch command.

Orientation


There are some articles that explain how to execute any UNO dispatch commands and get the whole available information from the execution, in Java, in C++, in C#, in Python, and in LibreOffice or Apache OpenOffice Basic.

There are the list for the application foundations, the list for Writer, and the list for Calc of the UNO dispatch commands listed so far in this series.


Main Body


1: The Specifications


URL: .uno:DelToEndOfSentence

Description: When there is a next sentence in the current paragraph, this command deletes the characters from the text cursor to the head of the next sentence; when the text cursor is not at the tail of the current paragraph and there is no next sentence in the current paragraph, this command deletes the characters from the text cursor to the tail of the current paragraph; when the text cursor is at the tail of the current paragraph and there is no sentence or is only 1 sentence in the next paragraph, this command deletes the characters from the text cursor to the tail of the next paragraph; when the text cursor is at the tail of the current paragraph and there are at least 2 sentences in the next paragraph, this command deletes the characters from the text cursor to the head of the 2nd sentence.

Arguments (the types are UNO datum types):

Nothing.

The related information (the value of com.sun.star.frame.FeatureStateEvent.State) (the types are UNO datum types):

TypeValue
N/Avoid

The result information (the value of com.sun.star.frame.DispatchResultEvent.Result) (the type is a UNO datum type):

TypeValue
N/Avoid

<The previous article in this series | The table of contents of this series | The next article in this series>