Initializes and returns a “pop-up-pop-up-view”-style row template.
Original signature is '- (id)initWithLeftExpressions:(NSArray *)leftExpressions rightExpressionAttributeType:(NSAttributeType)attributeType modifier:(NSComparisonPredicateModifier)modifier operators:(NSArray *)operators options:(NSUInteger)options'
Available in Mac OS X v10.5 and later.

C# | Visual Basic | Visual C++ |
public NSPredicateEditorRowTemplate( NSArray leftExpressions, NSAttributeType attributeType, NSComparisonPredicateModifier modifier, NSArray operators, NSUInteger options )
Public Sub New ( _ leftExpressions As NSArray, _ attributeType As NSAttributeType, _ modifier As NSComparisonPredicateModifier, _ operators As NSArray, _ options As NSUInteger _ )
public: NSPredicateEditorRowTemplate( NSArray^ leftExpressions, NSAttributeType attributeType, NSComparisonPredicateModifier modifier, NSArray^ operators, NSUInteger options )

- leftExpressions (NSArray)
- An array of NSExpression objects that represent the left hand side of a predicate.
- attributeType (NSAttributeType)
- An attribute type for the right hand side of a predicate. This value dictates the type of view created, and how the control’s object value is coerced before putting it into a predicate.
- modifier (NSComparisonPredicateModifier)
- A modifier for the predicate (see NSComparisonPredicateModifier for possible values).
- operators (NSArray)
- An array of NSNumber objects specifying the operator type (see NSPredicateOperatorType for possible values).
- options (NSUInteger)
- Options for the predicate (see NSComparisonPredicate_Options for possible values).

A row template initialized using the given arguments.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)