Kvaser CanKing GUI Extensions SDK - v7.5.1
    Preparing search index...

    Function useSessionDataSlice

    • A hook for persistent (session) data tied to a specific view slice.

      Type Parameters

      • T

      Parameters

      • id: number

        The unique id of the view.

      • slice: string

        The slice name for the session data.

      • defaultValue: T | (() => T)

        The default value or a function that returns the default value.

      • OptionalloadedCallback: (value: T) => void

        Optional callback invoked once after data is loaded.

      Returns [T, Dispatch<SetStateAction<T>>, boolean]

      [state, setState, loaded] the current data, setter, and loaded flag.