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
  • Шаблон Formula Plus
  • Шаблон Formula Minus
  • Шаблон Formula Multiply
  • Шаблон Formula Divide
  1. Workflow WebForms
  2. Универсальные значения

Formula

Формула.

Шаблон Formula Plus

Сложение элементов.

<Formula>
  <Plus DataType="">
    <Item></Item>
    <Item></Item>
  </Plus>
</Formula>

Шаблон Formula Minus

Вычитание элементов.

<Formula>
  <Minus DataType="">
    <Item></Item>
    <Item></Item>
  </Minus>
</Formula>

Шаблон Formula Multiply

Умножение элементов.

<Formula>
  <Multiply DataType="">
    <Item></Item>
    <Item></Item>
  </Multiply>
</Formula>

Шаблон Formula Divide

Деление элементов.

<Formula>
  <Divide DataType="">
    <Item></Item>
    <Item></Item>
  </Divide>
</Formula>

Last updated 2 years ago