- 入门指南
- 在开始之前
- 如何
- 通知
- 使用 VB 表达式
- 设计应用程序
- 事件和规则
- 在应用程序中利用 RPA
- 在应用程序中利用实体
- 在应用程序中利用队列
- 应用程序生命周期管理 (ALM)
- 基本故障排除指南

Apps User Guide
To build a high-performing app using VB expressions, consider the following recommendations and guidelines:
-
VB elements must respect the following naming conventions:
-
It must begin with an alphabetic character or an underscore.
-
It must only contain alphanumeric characters, and underscores.
-
If it begins with an underscore, then it must contain at least one alphanumeric character.
-
It must not be a reserved keyword.
-
Name length is limited to 128 characters.
-
-
Apps controls and pages must respect the following naming conventions:
-
Controls and pages cannot have same name
-
Pages cannot have the default name of controls (for example: button, label)
Note:Icons are identified as controls. Pages cannot have the default name of an icon.
-
Page names must be unique in an app.
Note:Page names are case insensitive, therefore "MainPage" and "mainPAGE" are considered duplicates.
-
Control names must be unique within the page.
-
Both control and page names must respect the naming conventions for a valid VB name.
-
-
Apps variables must respect the following naming conventions:
-
It cannot have the same name as a control or a page
-
It cannot have the default name of controls (for example: "button", "label")
-
It must be unique in an app.
-
It must respect the naming conventions for a valid VB name.
-