SenseNet.ContentRepository.Fields.LongTextFieldSetting.CopyPropertiesFrom C# (CSharp) Method

CopyPropertiesFrom() protected method

protected CopyPropertiesFrom ( FieldSetting source ) : void
source FieldSetting
return void
        protected override void CopyPropertiesFrom(FieldSetting source)
        {
            base.CopyPropertiesFrom(source);

            var fsSource = (LongTextFieldSetting)source;

            TextType = fsSource.TextType;
            Rows = fsSource.Rows;
            AppendModifications = fsSource.AppendModifications;
        }