Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.
javax.swing.text

Interface StyledDocument

    • Method Detail

      • addStyle

        Style addStyle(String nm,
                     Style parent)
        Adds a new style into the logical style hierarchy. Style attributes resolve from bottom up so an attribute specified in a child will override an attribute specified in the parent.
        Parameters:
        nm - the name of the style (must be unique within the collection of named styles). The name may be null if the style is unnamed, but the caller is responsible for managing the reference returned as an unnamed style can't be fetched by name. An unnamed style may be useful for things like character attribute overrides such as found in a style run.
        parent - the parent style. This may be null if unspecified attributes need not be resolved in some other style.
        Returns:
        the style
      • removeStyle

        void removeStyle(String nm)
        Removes a named style previously added to the document.
        Parameters:
        nm - the name of the style to remove
      • getStyle

        Style getStyle(String nm)
        Fetches a named style previously added.
        Parameters:
        nm - the name of the style
        Returns:
        the style
      • setCharacterAttributes

        void setCharacterAttributes(int offset,
                                  int length,
                                  AttributeSet s,
                                  boolean replace)
        Changes the content element attributes used for the given range of existing content in the document. All of the attributes defined in the given Attributes argument are applied to the given range. This method can be used to completely remove all content level attributes for the given range by giving an Attributes argument that has no attributes defined and setting replace to true.
        Parameters:
        offset - the start of the change >= 0
        length - the length of the change >= 0
        s - the non-null attributes to change to. Any attributes defined will be applied to the text for the given range.
        replace - indicates whether or not the previous attributes should be cleared before the new attributes as set. If true, the operation will replace the previous attributes entirely. If false, the new attributes will be merged with the previous attributes.
      • setParagraphAttributes

        void setParagraphAttributes(int offset,
                                  int length,
                                  AttributeSet s,
                                  boolean replace)
        Sets paragraph attributes.
        Parameters:
        offset - the start of the change >= 0
        length - the length of the change >= 0
        s - the non-null attributes to change to. Any attributes defined will be applied to the text for the given range.
        replace - indicates whether or not the previous attributes should be cleared before the new attributes are set. If true, the operation will replace the previous attributes entirely. If false, the new attributes will be merged with the previous attributes.
      • setLogicalStyle

        void setLogicalStyle(int pos,
                           Style s)
        Sets the logical style to use for the paragraph at the given position. If attributes aren't explicitly set for character and paragraph attributes they will resolve through the logical style assigned to the paragraph, which in turn may resolve through some hierarchy completely independent of the element hierarchy in the document.
        Parameters:
        pos - the starting position >= 0
        s - the style to set
      • getLogicalStyle

        Style getLogicalStyle(int p)
        Gets a logical style for a given position in a paragraph.
        Parameters:
        p - the position >= 0
        Returns:
        the style
      • getParagraphElement

        Element getParagraphElement(int pos)
        Gets the element that represents the paragraph that encloses the given offset within the document.
        Parameters:
        pos - the offset >= 0
        Returns:
        the element
      • getCharacterElement

        Element getCharacterElement(int pos)
        Gets the element that represents the character that is at the given offset within the document.
        Parameters:
        pos - the offset >= 0
        Returns:
        the element
      • getForeground

        Color getForeground(AttributeSet attr)
        Takes a set of attributes and turn it into a foreground color specification. This might be used to specify things like brighter, more hue, etc.
        Parameters:
        attr - the set of attributes
        Returns:
        the color
      • getBackground

        Color getBackground(AttributeSet attr)
        Takes a set of attributes and turn it into a background color specification. This might be used to specify things like brighter, more hue, etc.
        Parameters:
        attr - the set of attributes
        Returns:
        the color
      • getFont

        Font getFont(AttributeSet attr)
        Takes a set of attributes and turn it into a font specification. This can be used to turn things like family, style, size, etc into a font that is available on the system the document is currently being used on.
        Parameters:
        attr - the set of attributes
        Returns:
        the font

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/swing/text/StyledDocument.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut