Version

PaintCell(SceneGraph,Rectangle,Color,Color,Color,Color,Int32,Int32,Int32,IAdvanceAxis,IAdvanceAxis) Method

Draws a heat map cell to the specified SceneGraph.
Syntax
'Declaration
 
Protected Sub PaintCell( _
   ByVal scene As SceneGraph, _
   ByVal cell As Rectangle, _
   ByVal topLeftColor As Color, _
   ByVal topRightColor As Color, _
   ByVal bottomLeftColor As Color, _
   ByVal bottomRightColor As Color, _
   ByVal subsets As Integer, _
   ByVal i As Integer, _
   ByVal j As Integer, _
   ByVal X As IAdvanceAxis, _
   ByVal Y As IAdvanceAxis _
) 
protected void PaintCell( 
   SceneGraph scene,
   Rectangle cell,
   Color topLeftColor,
   Color topRightColor,
   Color bottomLeftColor,
   Color bottomRightColor,
   int subsets,
   int i,
   int j,
   IAdvanceAxis X,
   IAdvanceAxis Y
)

Parameters

scene
The SceneGraph to add the cell to.
cell
A rectangle representing the bounds of the cell to be added.
topLeftColor
Color to paint the top-left quadrant of this cell.
topRightColor
Color to paint the top-right quadrant of this cell.
bottomLeftColor
Color to paint the bottom-left quadrant of this cell.
bottomRightColor
Color to paint the bottom-right quadrant of this cell.
subsets
Number of times to divide the current cell.
i
The row to assign this cell.
j
The column to assign this cell.
X
A reference to the X axis.
Y
A reference to the Y axis.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also