* Delete the specified field. * * @param fieldId The ID of the field. * @param conversion * When deleting a field as an associated field, * mark whether the associated field of the associated datasheet is deleted or converted to text, the default is Converted to a text field. *
(fieldId: string, conversion?: Conversion)
| 266 | * ``` |
| 267 | */ |
| 268 | public async deleteFieldAsync(fieldId: string, conversion?: Conversion): Promise<void> { |
| 269 | return await this.modalDatasheet.deleteField(fieldId, conversion); |
| 270 | } |
| 271 | |
| 272 | /** |
| 273 | * Get the record by record ID in the datasheet. |
nothing calls this directly
no test coverage detected