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

    Interface IDefaultValueStorage<T>

    The default storage for a property

    interface IDefaultValueStorage<T> {
        Get(): T;
        Set(value: T, noevent?: boolean): void;
    }

    Type Parameters

    • T
    Index

    Methods

    Methods

    • Get the property value in the default storage.

      Returns T

    • Set the property value in the default storage.

      Parameters

      • value: T

        The new property value

      • Optionalnoevent: boolean

        Don't raise the Changed event after updating the value.

      Returns void