IPartialRawDataLoader

public interface IPartialRawDataLoader

The partial data loader.

Methods

MethodDescription
process(Rectangle rectangle, byte[] data, Point start, Point end)Processes the loaded data.
process(Rectangle rectangle, byte[] data, Point start, Point end, LoadOptions loadOptions)Processes the loaded data.

process(Rectangle rectangle, byte[] data, Point start, Point end)

public abstract void process(Rectangle rectangle, byte[] data, Point start, Point end)

Processes the loaded data.

Parameters:

ParameterTypeDescription
rectangleRectangleThe data rectangle.
databyte[]The raw data.
startPointThe start data point. If not equal to (left,top) meaning that it is not full rectangle we have.
endPointThe end data point. If not equal to (right,bottom) meaning that it is not full rectangle we have.

process(Rectangle rectangle, byte[] data, Point start, Point end, LoadOptions loadOptions)

public abstract void process(Rectangle rectangle, byte[] data, Point start, Point end, LoadOptions loadOptions)

Processes the loaded data.

Parameters:

ParameterTypeDescription
rectangleRectangleThe data rectangle.
databyte[]The raw data.
startPointThe start data point. If not equal to (left,top) meaning that it is not full rectangle we have.
endPointThe end data point. If not equal to (right,bottom) meaning that it is not full rectangle we have.
loadOptionsLoadOptionsThe load options.