RevGrid - v0.9.3
    Preparing search index...

    Interface RevTextFormattableValue<TypeId, AttributeTypeId>

    interface RevTextFormattableValue<TypeId, AttributeTypeId> {
        attributes: readonly Attribute<AttributeTypeId>[];
        typeId: TypeId;
        addAttribute(value: Attribute<AttributeTypeId>): void;
        addOrRemoveAttribute(value: Attribute<AttributeTypeId>, add: boolean): void;
        hasAttribute(value: Attribute<AttributeTypeId>): boolean;
        isUndefined(): boolean;
        removeAttribute(value: Attribute<AttributeTypeId>): void;
        setAttributes(value: Attribute<AttributeTypeId>[]): void;
    }

    Type Parameters

    • TypeId
    • AttributeTypeId
    Index

    Properties

    attributes: readonly Attribute<AttributeTypeId>[]
    typeId: TypeId

    Methods

    • Returns boolean