Enables rendering of properties representing a range of integers. Stored as a querystring in the format Minimum=INT&Maximum=INT
Supported Data Types
custom
Scripted Extension Configuration XML
<property id="propertyId" labelResourceName="nameResource" descriptionResourceName="descriptionResource" dataType="custom" template="core_v2_intRange" minimum="" maximum="" />
Plugin Configuration C#
var property = new Property
{
Id = "propertyId",
LabelResourceName = "nameResource",
DescriptionResourceName = "descriptionResource",
DataType = "custom",
Template = "core_v2_intRange",
Options = new NameValueCollection
{
{ "minimum", "" },
{ "maximum", "" }
}
};Options
| Name | Description | Default | Options |
|---|---|---|---|
| minimum | The minimum value allowed in the range. | ||
| maximum | The maximum value allowed in the range. |