# give/4.16.9/src/DonationForms/ValueObjects/DesignSettingsSectionStyle.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/DonationForms/ValueObjects/DesignSettingsSectionStyle.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/DonationForms/ValueObjects/DesignSettingsSectionStyle.php
- Modified: 2024-02-08T23:53:28+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/DonationForms/ValueObjects/DesignSettingsSectionStyle.php#L10-L20`.

```php
<?php

namespace Give\DonationForms\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * @since 3.4.0
 *
 * @method static DesignSettingsSectionStyle DEFAULT()
 * @method static DesignSettingsSectionStyle BORDER()
 * @method static DesignSettingsSectionStyle SOLID()
 * @method static DesignSettingsSectionStyle CARD()
 * @method bool isDefault()
 * @method bool isBorder()
 * @method bool isSolid()
 * @method bool isCard()
 */
class DesignSettingsSectionStyle extends Enum
{
    const DEFAULT = 'default';
    const BORDER = 'border';
    const SOLID = 'solid';
    const CARD = 'card';
}

```
