IsBackgroundBitmap - PYTHON 不支持

Verifies that the specified view contains a background bitmap.

语法

Rhino.IsBackgroundBitmap (strView)

参数

strView

Required.字符串。The title or identifier of the view.

返回值

Boolean

True or False indicating success or failure.

Null

On error.

示例

Dim strView

strView = Rhino.CurrentView

If Not Rhino.IsBackgroundBitmap(strView) Then

  Rhino.BackgroundBitmap strView, "C:\Windows\Coffee Bean.bmp", Array(0,0,0), 25

End If

同见

BackgroundBitmap