Class SelectorLookupResult
Result of a selector
Inheritance
System.Object
    SelectorLookupResult
  Namespace: Simplic.Framework.DBUI
Assembly: Simplic.Framework.DBUI.dll
Syntax
public class SelectorLookupResult : object
  Properties
| Improve this Doc View SourceDisplayFriendlyResult
Contains the result which will be displayed as the friendly text, such as customer name If nothing is selected, the result will be null
Declaration
public object DisplayFriendlyResult { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Object | 
DisplayResult
Contains the result which will be displayed as the friendly text, such as customer number If nothing is selected, the result will be null
Declaration
public object DisplayResult { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Object | 
IdentityResult
Contains the result as an object (int, string, ...), such as customer ident If nothing is selected, the result will be null
Declaration
public object IdentityResult { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Object | 
IsValid
True if a result was selected, else false
Declaration
public bool IsValid { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Methods
| Improve this Doc View SourceClone()
Clone the current result
Declaration
public SelectorLookupResult Clone()
  Returns
| Type | Description | 
|---|---|
| SelectorLookupResult | Instance of a new result object  |