UmbStringState
===
Protected
Observable that
const myState = new UmbArrayState('Hello world');console.log("Value is: ", myState.value); Copy
const myState = new UmbArrayState('Hello world');console.log("Value is: ", myState.value);
Observable that the State casts to.
asObservable
const myState = new UmbArrayState('Hello world');this.observe(myState, (latestStateValue) => console.log("Value is: ", latestStateValue)); Copy
const myState = new UmbArrayState('Hello world');this.observe(myState, (latestStateValue) => console.log("Value is: ", latestStateValue));
Optional
destroy
The current data of this state.
getValue
The next data for this state to hold.
setValue
const myState = new UmbArrayState('Good morning');// myState.value is equal 'Good morning'.myState.setValue('Goodnight')// myState.value is equal 'Goodnight'. Copy
const myState = new UmbArrayState('Good morning');// myState.value is equal 'Good morning'.myState.setValue('Goodnight')// myState.value is equal 'Goodnight'.
UmbStringState
Description
===
.