SetCurrentFormPage 方法

       

在检查器中显示指定的窗体页面。

expression.SetCurrentFormPage(PageName)

expression  必选。返回 Inspector 对象的表达式。

PageName  必选,String 类型。窗体页面的显示名称。

示例

本 VBScript 示例使用 Open 事件在每次打开项目时打开“所有字段”页。

Function Item_Open()
    Item.GetInspector.SetCurrentFormPage "All Fields"
End Function