ObjectTable.FindByUserString Method (String, String, Boolean)

ObjectTableFindByUserString Method (String, String, Boolean)

Finds all objects whose UserString matches the search patterns.

Namespace:  Rhino.DocObjects.Tables
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public RhinoObject[] FindByUserString(
	string key,
	string value,
	bool caseSensitive
)
Public Function FindByUserString ( 
	key As String,
	value As String,
	caseSensitive As Boolean
) As RhinoObject()

Parameters

key
Type: SystemString
Search pattern for UserString keys (supported wildcards are: ? = any single character, * = any sequence of characters).
value
Type: SystemString
Search pattern for UserString values (supported wildcards are: ? = any single character, * = any sequence of characters).
caseSensitive
Type: SystemBoolean
If true, string comparison will be case sensitive.

Return Value

Type: RhinoObject
An array of all objects whose UserString matches with the search patterns or null when no such objects could be found.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.8
See Also