Interface IValuesListBaseSelection
Assembly: Estrelica.Interfaces.dll
Syntax
[StayPublic]
[DoNotObfuscateType]
public interface IValuesListBaseSelection
Properties
"Other text" value for the record/field
Declaration
string OtherText { get; }
Property Value
IArcherValuesList Values List associated with the field, and from which the record/field's values are selected
Declaration
IArcherValuesList ValuesList { get; }
Property Value
Integer Id of the Values List associated with the field, and from which the record/field's values are selected
Declaration
int ValuesListId { get; }
Property Value
Methods
Returns true if the Values List selection includes any of the Values List Values in the values array
Declaration
bool ContainsAny(params IArcherValuesListValue[] values)
Parameters
Returns
Returns true if the Values List selection includes any of the Values List Values in the values enumerable
Declaration
bool ContainsAny(IEnumerable<IArcherValuesListValue> values)
Parameters
Returns
Returns true if the Values List selection includes one or more Values List Values having Ids matching any integers in the values enumerable
Declaration
bool ContainsAny(IEnumerable<int> valueIds)
Parameters
Returns
Returns true if the Values List selection includes one or more Values List Values having names matching any strings in the values enumerable
Declaration
bool ContainsAny(IEnumerable<string> valueNames)
Parameters
Returns
Returns true if the Values List selection includes one or more Values List Values having Ids matching any integers in the values array
Declaration
bool ContainsAny(params int[] valueIds)
Parameters
Returns
Returns true if the Values List selection includes one or more Values List Values having names matching any strings in the values array
Declaration
bool ContainsAny(params string[] valueNames)
Parameters
Returns
Extension Methods