GetStateDataFromComboBoxEntry Method (JobStepExec)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetStateDataFromComboBoxEntry() method retrieves the state code and description based on the entry from a combo box populated with StateData objects.
'Declaration
Public Shared Sub GetStateDataFromComboBoxEntry( _
ByVal comboBoxEntry As Object, _
ByRef stateDesc As String, _
ByRef stateCd As Integer, _
ByRef stateColor As Integer _
)
public static void GetStateDataFromComboBoxEntry(
object comboBoxEntry,
out string stateDesc,
out int stateCd,
out int stateColor
)
Parameters
- comboBoxEntry
- Required. Holds the StateData object from a combo box.
- stateDesc
- Output. Holds the returned state description.
- stateCd
- Output. Holds the returned state code.
- stateColor
- Output. Holds the returned state color.