2019-10-06

81: The UNO Dispatch Command Specifications of '.uno:ChangeCaseToTitleCase'

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


Summary


The URL, the description, the arguments, the result information, and the related information (which can be gotten from the command execution) of the UNO dispatch command, '.uno:ChangeCaseToTitleCase', are described.

Topics


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

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.

Introduction


'Orientation' is meant for the passersby who don't stand in 'Starting Context' and/or aren't enthusiastic about 'Target Context'. It doesn't contain any new technical information and can be skipped by anyone who doesn't need any orientation.



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 and the list for Calc of the UNO dispatch commands listed so far in this series.


Main Body


1: The Specifications


URL: .uno:ChangeCaseToTitleCase

Description: This command changes the first character and the other characters of each of the target words (whether it is an article, a preposition, or a coordination conjunction or not) to upper case and to lower case, respectively. The target words are determined like this: when a cell is in the whole-cell-has-focus mode, all the words in the cell are the target words; when a cell is in the cell-contents-are-edited mode or a cell is in the comment-is-edited mode or a shape object is in the contents-are-edited mode, if a string part of the contents is selected, all the words to which the string part belongs are the target words, while if no string part is selected, if the text cursor is in front of or in a word, the word is the target word, otherwise, no word is any target word.

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):

Nothing.

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>