ABB Ability™ History UI SDK - Client API Reference
    Preparing search index...

    The default property value storage

    interface IDefaultStorage {
        GetValue(propertyname: string): unknown;
        SetValue(propertyname: string, value: unknown, noevent?: boolean): void;
    }
    Index

    Methods

    • Gets the property value from the default property storage using the default Get function.

      Parameters

      • propertyname: string

        The name of the property.

      Returns unknown

    • Sets the property value in the default property storage using the default Set function. (NOTE: By default raises the property changed event)

      Parameters

      • propertyname: string

        The name of the property.

      • value: unknown

        The property value.

      • Optionalnoevent: boolean

        Do not raise the property changed event.

      Returns void