Workflow WebForms (Syntax)
Платформа WTСинтаксисБаза знаний
  • Form.xml
  • Workflow WebForms
    • Appearance
    • Checkings
    • Commands
      • CallCommand
      • ClipboardSetCommand
      • ComputeHashCommand
      • ConvertDocumentToPdfCommand
      • DataConnectionRefreshCommand
      • DeleteFileCommand
      • DownloadFileCommand
      • EmailSendCommand
      • ExportTableToCsvCommand
      • ExportToDocCommand
      • ExportToDocxCommand
      • ExportToExcelCommand
      • ExportToPdfCommand
      • FocusSetCommand
      • FormShowCommand
      • GetEngineInfoCommand
      • LoginCommand
      • LogoutCommand
      • LogWriteCommand
      • MessageBoxCommand
      • SaveClipboardImageCommand
      • SaveCommand
      • ScreenshotCommand
      • SequentialCommand
      • SerializeToJsonCommand
      • ValueRefreshCommand
      • ValueSetCommand
      • InvokeJsCommand
    • Conditions
      • EventCondition
        • CellClickCondition
        • CellDoubleClickCondition
        • ChangedCondition
        • ClickCondition
        • DataConnectionsLoadedCondition
        • DataConnectionsLoadingCondition
        • DoubleClickCondition
        • FormLoadedCondition
        • KeyDownCondition
        • KeyPressCondition
        • MouseEnterCondition
        • MouseLeaveCondition
      • ComparisonCondition
        • ContainsCondition
        • EndsWithCondition
        • EqualCondition
        • GreaterCondition
        • IsDataTypeCondition
        • IsEmailCondition
        • IsINNCondition
        • IsKPPCondition
        • IsMatchRegexCondition
        • IsNotNullCondition
        • IsNullCondition
        • IsNullOrEmptyCondition
        • IsOGRNCondition
        • IsSNILSCondition
        • LessCondition
        • NotContainsCondition
        • NotEqualCondition
        • NotGreaterCondition
        • NotLessCondition
        • StartsWithCondition
      • NestedCondition
    • DataConnections
      • AccessPointDataConnection
      • ArrayGetDataConnection
      • ConvertDataConnection
      • PrimaryGetDataConnection
        • SqlQuery
      • SecondaryGetDataConnection
      • SetDataConnection
    • DataTypes
      • BooleanDataType
      • DateDataType
      • DateTimeDataType
      • DecimalDataType
      • DoubleDataType
      • IntegerDataType
      • ShortDataType
      • StringDataType
      • TableDataType
      • TimeSpanDataType
    • Executions
    • Objects
      • Button
      • CheckBox
      • CheckedComboBox
      • ColorBox
      • ComboBox
      • CounterVariable
      • DatabaseTable
        • Column
          • ColumnTextBox
          • ColumnImageBox
          • ColumnButtonBox
          • ColumnNumericBox
      • DateTimePicker
      • FileUploader
      • GroupBox
      • Label
      • LinkLabel
      • NavigationMenu
      • NumericBox
      • Panel
      • PictureBox
      • RadioButtonBlock
      • Subscriber
      • TextBox
      • Timer
      • Variable
      • MarkupContainer
    • Parameters
    • Универсальные значения
      • AccessPoint
      • Array
      • DataConnection
      • DataConnectionProperty
      • DateTime
      • DataTypeConvert
      • DataTypeFormat
      • Input
      • Calculate
      • CommandResult
      • FormProperty
      • Formula
      • String
      • Structure
      • Switch
      • If
      • ObjectValue
      • ObjectProperty
      • Parameter
      • Константа
      • Логическое выражение
Powered by GitBook
On this page
  • Шаблон Structure List
  • Шаблон Structure Table
  • Шаблон Structure DataTable
  • Шаблон Structure Dictionary
  1. Workflow WebForms
  2. Универсальные значения

Structure

Структура данных.

Шаблон Structure List

Массив элементов.

<Structure Type="List">
  <Item></Item>
  <Item></Item>
  <Item></Item>
</Structure>

Шаблон Structure Table

Матрица элементов, выстроенная по принципу таблицы: состоит из строк, которые состоят из определенного количества значений, соответствующих столбцам.

Количество элементов в каждой строке должно быть одинаковым.

<Structure Type="Table">
  <Row>
    <Item></Item>
    <Item></Item>
  </Row>
  <Row>
    <Item></Item>
    <Item></Item>
  </Row>
</Structure>

Шаблон Structure DataTable

Похожа на Table, только столбцы имеют имена и каждая строка может содержать значений только из определенных столбцов (каких именно - указывается в атрибуте Name тэга <Column>).

<Structure Type="DataTable">
  <Row>
    <Column Name=""></Column>
    <Column Name=""></Column>
  </Row>
  <Row>
    <Column Name=""></Column>
    <Column Name=""></Column>
  </Row>
</Structure>

Шаблон Structure Dictionary

Словарь соответствий "Ключ" - "Значение".

<Structure Type="Dictionary">
  <Key Name=""></Key>
  <Key Name=""></Key>
</Structure>

Last updated 2 years ago