VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.JavaScriptApi Namespace / PdfJsAnnotation Class / delay Property
Syntax Remarks Requirements SeeAlso
In This Topic
    delay Property (PdfJsAnnotation)
    In This Topic
    Gets or sets a value indicating whether the redrawing of a annotation'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 - annotation appearance must NOT be regenerated until this property is not set to false;
    false - annotation 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 annotation before requesting that the field regenerate its appearance.

    Requirements

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

    See Also