ViewTableFind Method (String, Boolean) |
Finds a view in this document with a main viewport that has a given name. Note that there
may be multiple views in this document that have the same name. This function only returns
the first view found. If you want to find all the views with a given name, use the GetViewList
function and iterate through the views.
Namespace:
Rhino.DocObjects.Tables
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public RhinoView Find(
string mainViewportName,
bool compareCase
)
Public Function Find (
mainViewportName As String,
compareCase As Boolean
) As RhinoView
Parameters
- mainViewportName
- Type: SystemString
The name of the main viewport. - compareCase
- Type: SystemBoolean
true if capitalization influences comparison; otherwise, false.
Return Value
Type:
RhinoViewA Rhino view on success; null on error.
See Also