Home > RhinoScript Methods > Block Methods > BlockStatus
Returns the status of a linked block.
Rhino.BlockStatus (strBlock)
strBlock |
Required. String. The name of an existing block definition. |
Number |
The current status.
|
Dim strBlock, strDesc
strBlock = Rhino.GetString("Block name to list description")
If Rhino.IsBlock(strBlock) Then
strDesc = Rhino.BlockDescription(strBlock)
If IsNull(strDesc) Then
Rhino.Print "No description"
Else
Rhino.Print strDesc
End If
End If