numl.Model.StringProperty.StringProperty C# (CSharp) 메소드

StringProperty() 공개 메소드

Default constructor.
public StringProperty ( ) : System
리턴 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;
        }