2021-02-07

179: The Specifications of Calc '.uno:Italic'

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

A UNO dispatch command that makes the characters italic or non-italic

Topics


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

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

Description: The characters processed by this command are all the characters of the selected cells or the selected non-cell objects in the whole-cell-has-focus mode or in the non-cell-objects-are-selected mode or the selected characters; this command makes the non-italic characters italic or the italic characters non-italic, where the characters are deemed to be italic only when all the characters are italic.

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
boolean'true' if the characters were italic; 'false' otherwise
boolean'true' if the characters has become italic; 'false' otherwise

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>