``SeparatorField`` adds vertical separation to the display.
| 60 | |
| 61 | |
| 62 | class SeparatorField: |
| 63 | """ |
| 64 | ``SeparatorField`` adds vertical separation to the display. |
| 65 | """ |
| 66 | def _fill_core_struct(self, value): |
| 67 | value.type = FormInputFieldType.SeparatorFormField |
| 68 | value.hasDefault = False |
| 69 | |
| 70 | def _fill_core_result(self, value): |
| 71 | pass |
| 72 | |
| 73 | def _get_result(self, value): |
| 74 | pass |
| 75 | |
| 76 | |
| 77 | class TextLineField: |
no outgoing calls
no test coverage detected