Skip to main content
A newer version of this page is available.
All docs
V18.2

String Properties in Domain Components

  • 2 minutes to read

The example below illustrates how to implement String Properties in a Domain Component interface.

// By default, the string property size is 100.
string DefaultSizeStringProperty { get; set; }
// The string property size is limited to 15.
[FieldSize(15)]
string ShortSizeStringProperty { get; set; }
// The string property size is unlimited. It is displayed from a memo editor.
// By default, this property is not displayed in List Views. You can make its column visible with the VisibleInListView attribute.
[FieldSize(FieldSizeAttribute.Unlimited), VisibleInListView(true)]
string UnlimitedSizeStringProperty { get; set; }
// Delayed loading and compression are applied to this property:
[Delayed, ValueConverter(typeof(StringCompressionConverter))]
string CompressedUnlimitedStringProperty { get; set; }
// This property has a list of predefined values:
[ModelDefault("PredefinedValues",
    "Predefined Value 1;Predefined Value 2;Predefined Value 3;Predefined Value 4;Predefined Value 5")]
string StringWithPredefinedValuesProperty { get; set; }