VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.FormsProcessing.FormRecognition Namespace / FormFieldTemplateGroup Class / ValueFormat Property
Syntax Remarks Requirements SeeAlso
In This Topic
    ValueFormat Property (FormFieldTemplateGroup)
    In This Topic
    Gets or sets the format string that should be applied to the value of recognized field group.
    Syntax
    'Declaration
    
    <DescriptionAttribute("The format string that should be applied to the value of recognized field group.")>
    Public Overridable Property ValueFormat As System.String
    
    
    [Description("The format string that should be applied to the value of recognized field group.")]
    public virtual System.String ValueFormat { get; set; }
    
    
    [Description("The format string that should be applied to the value of recognized field group.")]
    public: __property virtual System.String get_ValueFormat();
    public: __property virtual void set_ValueFormat(
    System.String value
    );
    [Description("The format string that should be applied to the value of recognized field group.")]
    public:
    virtual property System.String ValueFormat { System.String get(); void set(System.String value); }

    Property Value

    null - default formatting is used; NOT null - property value is used as format string for the value of recognized field group.
    Default value is null.
    Remarks

    As an example of format string can be used the following string:
    "{0}/{1}/{2}"
    - this format string can be used in a group that contains day, month and year to compose a date in certain format.

    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also