Revit 2020 API |
ParameterFilterRuleFactory..::..CreateNotContainsRule Method |
ParameterFilterRuleFactory Class See Also |
Creates a filter rule that determines whether strings from the document do not
contain a certain string value.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 20.0.0.0 (20.0.0.377)
Since:
2011
Syntax
C# |
---|
public static FilterRule CreateNotContainsRule( ElementId parameter, string value, bool caseSensitive ) |
Visual Basic |
---|
Public Shared Function CreateNotContainsRule ( _ parameter As ElementId, _ value As String, _ caseSensitive As Boolean _ ) As FilterRule |
Visual C++ |
---|
public: static FilterRule^ CreateNotContainsRule( ElementId^ parameter, String^ value, bool caseSensitive ) |
Parameters
- parameter
- Type: Autodesk.Revit.DB..::..ElementId
A string-typed parameter used to get values from the document for a given element.
- value
- Type: System..::..String
The user-supplied string value for which values from the document will be searched.
- caseSensitive
- Type: System..::..Boolean
If true, the string comparison will be case-sensitive.
Exceptions
Exception | Condition |
---|---|
Autodesk.Revit.Exceptions..::..ArgumentNullException | A non-optional argument was NULL |