Uses of Interface
jfx.incubator.scene.control.richtext.model.StyledInput
Packages that use StyledInput
Package
Description
Provides two controls for displaying and editing large, virtualized, rich text documents:
RichTextArea
and
CodeArea
.Provides common models for
RichTextArea
and
CodeArea
controls.-
Uses of StyledInput in jfx.incubator.scene.control.richtext
Methods in jfx.incubator.scene.control.richtext with parameters of type StyledInputModifier and TypeMethodDescriptionfinal TextPos
RichTextArea.appendText
(StyledInput in) Appends the styled content to the end of the document.final TextPos
RichTextArea.insertText
(TextPos pos, StyledInput in) Inserts the styled content at the specified position.final TextPos
RichTextArea.replaceText
(TextPos start, TextPos end, StyledInput in, boolean createUndo) Replaces the specified range with the new input. -
Uses of StyledInput in jfx.incubator.scene.control.richtext.model
Fields in jfx.incubator.scene.control.richtext.model declared as StyledInputModifier and TypeFieldDescriptionstatic final StyledInput
StyledInput.EMPTY
An empty StyledInput.Methods in jfx.incubator.scene.control.richtext.model that return StyledInputModifier and TypeMethodDescriptionabstract StyledInput
DataFormatHandler.createStyledInput
(String input, StyleAttributeMap attr) Creates a StyledInput for the given input string.HtmlExportFormatHandler.createStyledInput
(String input, StyleAttributeMap attr) PlainTextFormatHandler.createStyledInput
(String text, StyleAttributeMap attr) RichTextFormatHandler.createStyledInput
(String input, StyleAttributeMap attr) RtfFormatHandler.createStyledInput
(String text, StyleAttributeMap attr) static StyledInput
Creates a plain text styled input withStyleAttributeMap.EMPTY
.static StyledInput
StyledInput.of
(String text, StyleAttributeMap attrs) Creates a plain text styled input with the specified style.Methods in jfx.incubator.scene.control.richtext.model with parameters of type StyledInputModifier and TypeMethodDescriptionfinal TextPos
StyledTextModel.replace
(StyleResolver resolver, TextPos start, TextPos end, StyledInput input, boolean allowUndo) Replaces the given range with the provided styled text input.