Uses of Class
jfx.incubator.scene.control.richtext.model.StyledTextModel
Packages that use StyledTextModel
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 StyledTextModel in jfx.incubator.scene.control.richtext
Methods in jfx.incubator.scene.control.richtext that return StyledTextModelModifier and TypeMethodDescriptionfinal StyledTextModelRichTextArea.getModel()Gets the value of themodelproperty.Methods in jfx.incubator.scene.control.richtext that return types with arguments of type StyledTextModelModifier and TypeMethodDescriptionfinal ObjectProperty<StyledTextModel> RichTextArea.modelProperty()Determines theStyledTextModelto use with this RichTextArea.Methods in jfx.incubator.scene.control.richtext with parameters of type StyledTextModelModifier and TypeMethodDescriptionvoidSelectionModel.extendSelection(StyledTextModel model, TextPos pos) Extends selection to the specified position.voidSingleSelectionModel.extendSelection(StyledTextModel model, TextPos pos) final voidRichTextArea.setModel(StyledTextModel m) Sets the value of themodelproperty.voidSelectionModel.setSelection(StyledTextModel model, TextPos anchor, TextPos caret) Replaced existing selection, if any, with the new one.voidSingleSelectionModel.setSelection(StyledTextModel model, TextPos anchor, TextPos caret) protected voidRichTextArea.validateModel(StyledTextModel m) Validates the model property value.Constructors in jfx.incubator.scene.control.richtext with parameters of type StyledTextModelModifierConstructorDescriptionRichTextArea(StyledTextModel model) Creates the instance using the specified model. -
Uses of StyledTextModel in jfx.incubator.scene.control.richtext.model
Subclasses of StyledTextModel in jfx.incubator.scene.control.richtext.modelModifier and TypeClassDescriptionclassA StyledTextModel based on plain text paragraphs.classEditable plain text model with optional syntax highlighting for use with theCodeAreacontrol.classEditable, in-memoryStyledTextModelbased on a collection of styled segments.classA simple, view-only, in-memory, styled text model.classThe base class for view-onlyStyledTextModels.Methods in jfx.incubator.scene.control.richtext.model with parameters of type StyledTextModelModifier and TypeMethodDescriptionabstract ObjectDataFormatHandler.copy(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end) Creates an object to be put into the Clipboard for the given text range.HtmlExportFormatHandler.copy(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end) PlainTextFormatHandler.copy(StyledTextModel m, StyleResolver resolver, TextPos start, TextPos end) RichTextFormatHandler.copy(StyledTextModel m, StyleResolver r, TextPos start, TextPos end) RtfFormatHandler.copy(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end) abstract voidDataFormatHandler.save(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end, OutputStream out) Save the text range in the handler's format to the output stream (e.g.voidHtmlExportFormatHandler.save(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end, OutputStream out) voidPlainTextFormatHandler.save(StyledTextModel m, StyleResolver resolver, TextPos start, TextPos end, OutputStream out) voidRichTextFormatHandler.save(StyledTextModel m, StyleResolver r, TextPos start, TextPos end, OutputStream out) voidRtfFormatHandler.save(StyledTextModel model, StyleResolver resolver, TextPos start, TextPos end, OutputStream out)