numl.Model.StringProperty.StringProperty C# (CSharp) Method

StringProperty() public method

Default constructor.
public StringProperty ( ) : System
return System
        public StringProperty()
            : base()
        {
            // set to default conventions
            SplitType = StringSplitType.Word;
            Separator = " ";
            Dictionary = new string[] { };
            Exclude = new string[] { };
            AsEnum = false;
            Type = typeof(string);
            Discrete = true;
        }