Useful button constants
| C# | Visual Basic | Visual C++ |
public enum ButtonIDConstants
Public Enumeration ButtonIDConstants
public enum class ButtonIDConstants
| Member | Description |
|---|---|
| ALL |
Use ALL when you want to get information about ALL the buttons
|
| DIGIT_1 |
The digit 1 on the dialpad.
|
| DIGIT_2 |
The digit 2 on the dialpad.
|
| DIGIT_3 |
The digit 3 on the dialpad.
|
| DIGIT_4 |
The digit 4 on the dialpad.
|
| DIGIT_5 |
The digit 5 on the dialpad.
|
| DIGIT_6 |
The digit 6 on the dialpad.
|
| DIGIT_7 |
The digit 7 on the dialpad.
|
| DIGIT_8 |
The digit 8 on the dialpad.
|
| DIGIT_9 |
The digit 9 on the dialpad.
|
| DIGIT_0 |
The digit 0 on the dialpad.
|
| DIGIT_STAR |
The digit * on the dialpad.
|
| DIGIT_POUND |
The digit # on the dialpad.
|
| CONFERENCE |
The conference button
|
| DROP |
The drop button
|
| TRANSFER |
The transfer button
|
| HOLD |
The hold button
|
| BUTTON_1 |
The first button in the Principal Module starts here. If you want to get to other feature buttons start with this number and add the appropriate offset.
For example, Principal Module Button 3 would be (BUTTON_1 + 2). The Principal Module is the module where the primary buttons for a station are
configured. Depending on the set type, other buttons may also exist in the Feature Module, Display Module, and Coverage Module.
|
| FEATURE_MODULE_START |
The first button in the Feature Module starts here. If you want to get to other feature buttons start with this number and add the appropriate offset.
For example, Feature Module Button 3 would be (FEATURE_MODULE_START + 2)
|
| DISPLAY_MODULE_START |
The first button in the Display Module starts here. If you want to get to other feature buttons start with this number and add the appropriate offset.
For example, Display Module Button 3 would be (DISPLAY_MODULE_START + 2)
|
| COVERAGE_MODULE_START |
The first button in the Coverage Module starts here. If you want to get to other feature buttons start with this number and add the appropriate offset.
For example, Coverage Module Button 3 would be (COVERAGE_MODULE_START + 2)
|
Assembly: ServiceProvider (Module: ServiceProvider)