PicklistItem Constructor (Object, String, String, PicklistItemAttrs, Type, String, String, String, Int32, String, PicklistAttrs) |
Overloaded constructor, creates an instance of a PicklistItem.
This version of the constructor is specifically intended for StandardLookup items with grouping
by accepting the picklistItemID which is the value from the xmt_picklist_item.picklist_item_id column.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public PicklistItem(
Object value,
string displayText,
string discrim,
PicklistItemAttrs attributes,
Type valueType,
string picklistItemID,
string name,
string altText,
int altInt,
string group,
PicklistAttrs pickAttrs
)
Public Sub New (
value As Object,
displayText As String,
discrim As String,
attributes As PicklistItemAttrs,
valueType As Type,
picklistItemID As String,
name As String,
altText As String,
altInt As Integer,
group As String,
pickAttrs As PicklistAttrs
)
Parameters
- value
- Type: SystemObject
The key value (typically the first column in the SELECT statement) - displayText
- Type: SystemString
The display text (typically the second column in the SELECT statement) - discrim
- Type: SystemString
The discrim value (typically the third column in the SELECT statement) - attributes
- Type: NetQuarryPicklistItemAttrs
PicklistItemAttrs flags - valueType
- Type: SystemType
The type of the value - picklistItemID
- Type: SystemString
The unique ID (picklist_item_id) for this item in the xmt_picklist_items table. - name
- Type: SystemString
The picklist item name, serves as a constant. - altText
- Type: SystemString
The alternate text - altInt
- Type: SystemInt32
The alternate integer - group
- Type: SystemString
The item group, if any. - pickAttrs
- Type: NetQuarryPicklistAttrs
The picklist item attributes.
See Also