Skip to content

State

type State =
    | Idle
    | Loading
    | ReadOnly
    | Error of string
    | Success of string
AssemblyFable.Ripple.Form.Plain

Cases

Idle
Loading
ReadOnly
Error of string
Success of string

Properties

member IsError: bool
member IsIdle: bool
member IsLoading: bool
member IsReadOnly: bool
member IsSuccess: bool