AppearanceDisplay - PYTHON 不支持

返回或修改一个应用程序接口条目的可见性。

语法

Rhino.AppearanceDisplay (item, show=None )

参数

item

Required.Number.Item number to either query or modify.The available items are as follows:

描述

0

Application menu

1

Command prompt

2

Status bar

3

View title bars

4

Application title bar

5

Full path in application title bar

6

Cross hair cursor

show

可选参数。Boolean.The new visibility state, either visible (True) or hidden (False).If omitted, the current visibility state is returned.

返回值

Number

If a blnShow is not specified, the current visibility state if successful.

Number

If a blnShow is specified, the visibility state if successful.

Null

如果执行不成功或出错,返回空值。

示例

If Not Rhino.AppearanceDisplay(2) Then

  Rhino.AppearanceDisplay 2, True

End If

同见

AppearanceColor

OsnapDialog