# give/4.16.9/src/FormBuilder/ValueObjects/EditorMode.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 20 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/FormBuilder/ValueObjects/EditorMode.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/FormBuilder/ValueObjects/EditorMode.php
- Modified: 2023-10-16T17:55:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/FormBuilder/ValueObjects/EditorMode.php#L10-L20`.

```php
<?php

namespace Give\FormBuilder\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * @since 3.0.0
 *
 * @method static EditorMode DESIGN()
 * @method static EditorMode SCHEMA()
 * @method bool isDesign()
 * @method bool isSchema()
 */
class EditorMode extends Enum
{
    const DESIGN = 'design';
    const SCHEMA = 'schema';
}

```
