2021 Method
Changes 6
M

ParameterFilterRuleFactory.CreateBeginsWithRule

Description:
Creates a filter rule that determines whether strings from the document begin with a certain string value.
public static FilterRule CreateBeginsWithRule(
	ElementId parameter,
	string value,
	bool caseSensitive
)
  • parameter
    A string-typed parameter used to get values from the document for a given element.
  • String
    value
    The user-supplied string value for which values from the document will be searched.
  • Boolean
    caseSensitive
    If true, the string comparison will be case-sensitive.
Return Value FilterRule