IPartialRawDataLoader
public interface IPartialRawDataLoader
The partial data loader.
Methods
| Method | Description |
|---|---|
| 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:
| Parameter | Type | Description |
|---|---|---|
| rectangle | Rectangle | The data rectangle. |
| data | byte[] | The raw data. |
| start | Point | The start data point. If not equal to (left,top) meaning that it is not full rectangle we have. |
| end | Point | The 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:
| Parameter | Type | Description |
|---|---|---|
| rectangle | Rectangle | The data rectangle. |
| data | byte[] | The raw data. |
| start | Point | The start data point. If not equal to (left,top) meaning that it is not full rectangle we have. |
| end | Point | The end data point. If not equal to (right,bottom) meaning that it is not full rectangle we have. |
| loadOptions | LoadOptions | The load options. |