Bitbybit Docs
    Preparing search index...

    Class TextFormatDto (Inputs.Text)

    A text with numbered placeholders and the values for text.format to fill in.

    Index

    Constructors

    Properties

    Constructors

    • Parameters

      • Optionaltext: string
      • Optionalvalues: string[]

      Returns TextFormatDto

    Properties

    text: string

    The text with placeholders such as {0} and {1}.

    Hello {0}
    
    values: string[]

    The values, in placeholder order: the first fills {0}, the second {1}.

    ["World"]