Subtext.Web.Controls.Captcha.CaptchaInfo.CaptchaInfo C# (CSharp) Method

CaptchaInfo() public method

Initializes a new instance of the CaptchaInfo class.
public CaptchaInfo ( string text ) : System
text string The text.
return System
        public CaptchaInfo(string text)
        {
            this.Width = 180;
            this.Height = 50;
            this.randomTextLength = 5;
            this.WarpFactor = CaptchaImage.FontWarpFactor.Low;
            this.FontFamily = string.Empty;
            this.text = text;
            this.validRandomTextChars = defaultValidRandomTextChars;
            this.DateGenerated = DateTime.Now;
            this.FontFamily = RandomFontFamily();
        }