RuleObjectExistsAttribute.LooksFor Property
Specifies the type of objects to be looked for.
Namespace: DevExpress.Persistent.Validation
Assembly: DevExpress.Persistent.Base.v24.1.dll
NuGet Package: DevExpress.Persistent.Base
Declaration
Property Value
Type | Description |
---|---|
Type | A type of the objects to be tested. |
Remarks
By default, this property is set to the attribute’s target class.
Note
When defining the RuleObjectExistsAttribute in code, the value for the LooksFor property is passed as a named parameter. This means that you do not have to specify it. However, when specifying, use the following format: LooksFor = typeof(Person) (LooksFor := TypeOf(Person), in Visual Basic).
See Also