Package nl.gx.webmanager.cms.core
Interface StylingOption
-
public interface StylingOption
Styling options allow to change the default style of headings and fonts in the Inline Editor. For example a styling option can set a different color or font of a specific content type. A dropdown in the inline editor allows chosing the style: which applies the CSS class to the selected HTML node.- Since:
- 10.30.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCssClass()
The CSS class that will be added to the HTML node's class list to apply this style option.int
getId()
The identifier for this Styling option.String
getTitle()
Title of this option to be shown to the user
-
-
-
Method Detail
-
getTitle
String getTitle()
Title of this option to be shown to the user- Returns:
- the title
- Since:
- 10.30.0
-
getCssClass
String getCssClass()
The CSS class that will be added to the HTML node's class list to apply this style option.- Returns:
- the CSS class
- Since:
- 10.30.0
-
getId
int getId()
The identifier for this Styling option.- Returns:
- the id
- Since:
- 10.30.0
-
-