@nextcloud/dialogs
    Preparing search index...

    Interface StylePropertyMapReadOnly

    The StylePropertyMapReadOnly interface of the CSS Typed Object Model API provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.

    MDN Reference

    interface StylePropertyMapReadOnly {
        size: number;
        forEach(
            callbackfn: (
                value: CSSStyleValue[],
                key: string,
                parent: StylePropertyMapReadOnly,
            ) => void,
            thisArg?: any,
        ): void;
        get(property: string): undefined | CSSStyleValue;
        getAll(property: string): CSSStyleValue[];
        has(property: string): boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    size: number

    The size read-only property of the containing the size of the StylePropertyMapReadOnly object.

    MDN Reference

    Methods

    • Parameters

      Returns void

    • The get() method of the object for the first value of the specified property.

      MDN Reference

      Parameters

      • property: string

      Returns undefined | CSSStyleValue

    • The getAll() method of the js-nolint getAll(property) - property - : The name of the property to retrieve all values of.

      MDN Reference

      Parameters

      • property: string

      Returns CSSStyleValue[]

    • The has() method of the property is in the StylePropertyMapReadOnly object.

      MDN Reference

      Parameters

      • property: string

      Returns boolean