public override UserPromptBase Clone()
        {
            SampleFileUserPrompt newProperty = new SampleFileUserPrompt();

            CopyTo(newProperty);
            return(newProperty);
        }
        public void CopyTo(SampleFileUserPrompt targetProperty)
        {
            base.CopyTo(targetProperty);

            targetProperty.MaxLength      = this.MaxLength;
            targetProperty.MinLength      = this.MinLength;
            targetProperty.HiddenProperty = this.HiddenProperty;
            targetProperty.FilePath       = this.FilePath;
        }