VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.JavaScriptApi Namespace / PdfJsField Class / delay Property
Syntax Remarks Requirements SeeAlso
In This Topic
    delay Property (PdfJsField)
    In This Topic
    Gets or sets a value indicating whether the redrawing of a field's appearance must be delayed.
    Syntax
    'Declaration
    
    Public Property delay As Boolean
    
    
    public bool delay { get; set; }
    
    
    public: __property bool get_delay();
    public: __property void set_delay(
    bool value
    );
    public:
    property bool delay { bool get(); void set(bool value); }

    Property Value

    True - field appearance must NOT be regenerated until this property is not set to false;
    false - field appearance must be regenerated after any change in annotation properties.
    Default value is false.
    Remarks

    It is generally used to buffer a series of changes to the properties of the field before requesting that the field regenerate its appearance.

    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