ObjectTableFindByUserString Method (String, String, Boolean) |
Finds all objects whose UserString matches the search patterns.
Namespace:
Rhino.DocObjects.Tables
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
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:
RhinoObjectAn array of all objects whose UserString matches with the search patterns or null when no such objects could be found.
See Also