Workflow MobileForms (Syntax)
Платформа WTСинтаксисБаза знаний
  • Form.xml
  • Workflow Mobile Forms
    • Appearance
    • Checkings
    • Commands
      • AnimatedValueSetCommand
      • CallCommand
      • CameraShowCommand
      • ClipboardSetCommand
      • ComputeHashCommand
      • ContextMenuShowCommand
      • DataConnectionRefreshCommand
      • DeleteFileCommand
      • DeviceOrientationSetCommand
      • DownloadFileCommand
      • EmailSendCommand
      • EngineConnectCommand
      • ExportToDocxCommand
      • ExportToExcelCommand
      • FileDialogShowCommand
      • FocusSetCommand
      • FormCloseCommand
      • FormShowCommand
      • GetEngineInfoCommand
      • LaunchCommand
      • LocaleSetCommand
      • LoginCommand
      • LogWriteCommand
      • MessageBoxCommand
      • PhoneCallCommand
      • PreferencesGetCommand
      • PreferencesSetCommand
      • ReplaceFileCommand
      • SaveCommand
      • ScreenshotCommand
      • SequentialCommand
      • SerializeToJsonCommand
      • SoundPlayCommand
      • SourceFileDownloadCommand
      • TooltipShowCommand
      • UploadFileCommand
      • ValueRefreshCommand
      • ValueSetCommand
      • VibrationCommand
    • Conditions
      • EventCondition
        • BeforeChangeCondition
        • ChangedCondition
        • ClickCondition
        • DataConnectionsLoadedCondition
        • DataConnectionsLoadingCondition
        • DoubleClickCondition
        • FormActivatedCondition
        • FormClosingCondition
        • FormFocusLostCondition
        • FormLoadedCondition
        • LongPressCondition
        • MessageBoxResultChangedCondition
        • SwipeCondition
      • ComparisonCondition
        • ContainsCondition
        • EndsWithCondition
        • EqualCondition
        • ExistsCondition
        • GreaterCondition
        • IsDataTypeCondition
        • IsEmailCondition
        • IsINNCondition
        • IsKPPCondition
        • IsMatchRegexCondition
        • IsNotNullCondition
        • IsNullCondition
        • IsNullOrEmptyCondition
        • IsOGRNCondition
        • IsSNILSCondition
        • LessCondition
        • NotContainsCondition
        • NotEqualCondition
        • NotGreaterCondition
        • NotLessCondition
        • StartsWithCondition
      • NestedCondition
    • DataConnections
      • AccessPointDataConnection
      • ArrayGetDataConnection
      • ConvertDataConnection
        • Селекторы
      • GraphQLDataConnection
      • PrimaryGetDataConnection
      • SecondaryGetDataConnection
      • SetDataConnection
    • DataTypes
      • BooleanDataType
      • DateDataType
      • DateTimeDataType
      • DecimalDataType
      • DoubleDataType
      • IntegerDataType
      • ShortDataType
      • StringDataType
      • TableDataType
      • TimeSpanDataType
    • Executions
    • Includes
    • Menus
      • ContextMenu
        • ContextMenu
        • FileContextMenu
        • LinkContextMenu
        • ListContextMenu
      • MenuItem
        • MenuItem
        • Separator
    • Objects
      • Button
      • Calendar
      • CheckBox
      • CheckedComboBox
      • CollectionView
        • CardStyle
        • CardTemplate
      • ComboBox
      • CounterVariable
      • DateTimePicker
      • GroupBox
      • Label
      • LinkLabel
      • ListBox
      • NumericBox
      • Panel
      • PictureBox
      • RadioButtonBlock
      • Slider
      • Spinner
      • Subscriber
      • TextBox
      • Timer
      • Variable
    • Parameters
    • Универсальные значения
      • AccessPoint
      • Array
      • DataConnection
      • DataConnectionProperty
      • DateTime
      • DataTypeConvert
      • DataTypeFormat
      • Input
      • Calculate
      • Clipboard
      • CommandResult
      • FormProperty
      • Formula
      • String
      • Structure
      • Switch
      • Text
      • If
      • Info
      • MenuProperty
      • ObjectValue
      • ObjectProperty
      • Parameter
      • Константа
      • Константы замены для команд
      • Логическое выражение
Powered by GitBook
On this page
  • Шаблон Structure List
  • Шаблон Structure Table
  • Шаблон Structure DataTable
  • Шаблон Structure Dictionary
  1. Workflow Mobile Forms
  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