Property FormatHint
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
FormatHint
Gets or sets the format this element should attempt to follow.
public TextExtractionElementFormat.PredefinedStringFormat FormatHint { get; set; }Property Value
Examples
var website = new TextExtractionElement("Website", ElementType.String);
website.Format.FormatHint = TextExtractionElementFormat.PredefinedStringFormat.Uri;Remarks
Only applicable when ElementType is String or StringArray.
In JSON: the "format" property accepts one of:
"date", "date-time", "time", "email",
"hostname", "ipv4", "ipv6", or "uri".
Default is None when unset.