VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging Namespace / ImageCollection Class / IntermediateAddInterval Property
Syntax Requirements SeeAlso
In This Topic
    IntermediateAddInterval Property (ImageCollection)
    In This Topic
    Gets or sets the timeout, in milliseconds, which defines how long should decoder load images from source before adding loaded images to the image collection.
    Syntax
    'Declaration
    
    Public Property IntermediateAddInterval As System.Int32
    
    
    public System.Int32 IntermediateAddInterval { get; set; }
    
    
    public: __property System.Int32 get_IntermediateAddInterval();
    public: __property void set_IntermediateAddInterval(
    System.Int32 value
    );
    public:
    property System.Int32 IntermediateAddInterval { System.Int32 get(); void set(System.Int32 value); }

    Property Value

    Possible values:
    • N - decoder loads images from source during N milliseconds, decoder adds loaded images to the image collection, decoder loads next images from source during next N milliseconds, adds loaded images to the image collection, etc;
    • 0 - decoder loads all images from source and adds loaded images to the image collection.
    Default value is 0.
    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