|  | CIMUGridTiff Method  | 
 Generate a Tiff (Tagged-Image file format) file with up to 16 grids.
 
    Namespace: 
   GeoEngine.Core.GXNetX
    Assembly:
   geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
 Syntax
Syntaxpublic static void GridTiff(
	CGXNETCore gxNetShared,
	string grds,
	string tiff,
	string bcol,
	int red,
	int green,
	int blue,
	double csize,
	int reg,
	double scale
)
public static void GridTiff(
	CGXNETCore gxNetShared,
	string grds,
	string tiff,
	string bcol,
	int red,
	int green,
	int blue,
	double csize,
	int reg,
	double scale
)
Public Shared Sub GridTiff ( 
	gxNetShared As CGXNETCore,
	grds As String,
	tiff As String,
	bcol As String,
	red As Integer,
	green As Integer,
	blue As Integer,
	csize As Double,
	reg As Integer,
	scale As Double
)
Public Shared Sub GridTiff ( 
	gxNetShared As CGXNETCore,
	grds As String,
	tiff As String,
	bcol As String,
	red As Integer,
	green As Integer,
	blue As Integer,
	csize As Double,
	reg As Integer,
	scale As Double
)
public:
static void GridTiff(
	CGXNETCore^ gxNetShared, 
	String^ grds, 
	String^ tiff, 
	String^ bcol, 
	int red, 
	int green, 
	int blue, 
	double csize, 
	int reg, 
	double scale
)
public:
static void GridTiff(
	CGXNETCore^ gxNetShared, 
	String^ grds, 
	String^ tiff, 
	String^ bcol, 
	int red, 
	int green, 
	int blue, 
	double csize, 
	int reg, 
	double scale
)
static member GridTiff : 
        gxNetShared : CGXNETCore * 
        grds : string * 
        tiff : string * 
        bcol : string * 
        red : int * 
        green : int * 
        blue : int * 
        csize : float * 
        reg : int * 
        scale : float -> unit 
static member GridTiff : 
        gxNetShared : CGXNETCore * 
        grds : string * 
        tiff : string * 
        bcol : string * 
        red : int * 
        green : int * 
        blue : int * 
        csize : float * 
        reg : int * 
        scale : float -> unit 
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
 A shared CGXNETCore
- grds
- Type: SystemString
 Comma-delimited string containing names of all grids to use in Tiff generation Up to 16 grids allowed.
- tiff
- Type: SystemString
 Name of Tiff file to create
- bcol
- Type: SystemString
 Background color option. One of W (White)  K (Black) C (Cyan) M (Magenta) Y (Yellow) R (Red)  G (Green) B (Blue)
- red
- Type: SystemInt32
 Background Red value (0-255)
- green
- Type: SystemInt32
 Background Green (0-255)
- blue
- Type: SystemInt32
 Background Blue  (0-255)
- csize
- Type: SystemDouble
 New cell size
- reg
- Type: SystemInt32
 Pixel size of registration marks
- scale
- Type: SystemDouble
 Map scale
 Remarks
Remarks
The background color can be either selected
from one of 8 settings, or can be specified
as a combination of Reg,Green, and Blue values.
 See Also
See Also