CaptchaImageProperties.FontFamily Property
Gets or sets a font family used within the challenge image
Namespace: DevExpress.Web.Captcha
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | "Times New Roman" | A string which specifies the font family of the challenge image. |
Example
The following part of the ASPxCaptcha - Features online demo illustrates how to customize the challenge image‘s style settings.
These settings are specified within a panel (ASPxComboBox, ASPxColorEdit editors) and applied to the captcha control via the Apply button (ASPxButton).
protected void btnApply_Click(object sender, EventArgs e) {
...
int parseResult = 0;
Captcha.ChallengeImage.FontFamily = cbFontFamily.Value.ToString();
Captcha.ChallengeImage.ForegroundColor = ceForegroundColor.Color;
Captcha.ChallengeImage.BackgroundColor = ceBackgroundColor.Color;
Captcha.ChallengeImage.BorderColor = ceBorderColor.Color;
if (int.TryParse(seBorderWidth.Text, out parseResult))
Captcha.ChallengeImage.BorderWidth = parseResult;
...
}
See Also