Returns raster formatted jpeg or png tiles.
'Declaration
Public Function GetTile( _
ByVal As System.Double, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.String _
) As System.IO.Stream
'Usage
Dim instance As Page
Dim scale As System.Double
Dim x As System.Integer
Dim y As System.Integer
Dim width As System.Integer
Dim height As System.Integer
Dim requestedFileType As System.String
Dim value As System.IO.Stream
value = instance.GetTile(scale, x, y, width, height, requestedFileType)
public System.IO.Stream GetTile(
System.double ,
System.int ,
System.int ,
System.int ,
System.int ,
System.string
)
public function GetTile(
: System.Double;
: System.Integer;
: System.Integer;
: System.Integer;
: System.Integer;
: System.String
): System.IO.Stream;
public function GetTile(
: System.double,
: System.int,
: System.int,
: System.int,
: System.int,
: System.String
) : System.IO.Stream;
public: System.IO.Stream* GetTile(
System.double ,
System.int ,
System.int ,
System.int ,
System.int ,
System.string*
)
public:
System.IO.Stream^ GetTile(
System.double ,
System.int ,
System.int ,
System.int ,
System.int ,
System.String^
)
Parameters
- scale
- scale value from greater then 0 to less than or equal to 1.0.
- x
- Horizontal tile start location in pixels.
- y
- Vertical tile start location in pixels.
- width
- Width of tile in pixels.
- height
- Height of tile in pixels.
- requestedFileType
- File type request must be for jpeg or png only.
Return Value
Returns formatted data image tile.