VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Decoders Namespace / IRasterGridDecoder Interface / CanUseProgressiveDecoding(Int32,DecodingSettings) Method
Syntax Requirements SeeAlso
In This Topic
    CanUseProgressiveDecoding(Int32,DecodingSettings) Method (IRasterGridDecoder)
    In This Topic
    Determines that decoder can progressively read the image.
    Syntax
    'Declaration
    
    Public Function CanUseProgressiveDecoding( _
    ByVal pageIndex
    The zero based page index.
    As System.Int32, _
    ByVal decodingSettings
    The decoding settings that should be used for decoding of page image.
    As DecodingSettings _
    ) As Boolean
    public bool CanUseProgressiveDecoding(
    System.Int32 pageIndex,
    DecodingSettings decodingSettings
    )
    public: bool CanUseProgressiveDecoding(
    System.Int32 pageIndex,
    DecodingSettings* decodingSettings
    )
    public:
    bool CanUseProgressiveDecoding(
    System.Int32 pageIndex,
    DecodingSettings^ decodingSettings
    )

    Parameters

    pageIndex
    The zero based page index.
    decodingSettings
    The decoding settings that should be used for decoding of page image.

    Return Value

    True if decoder can progressively read the image;
    false if decoder cannot progressively read the image.
    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