MapWinGIS:GridColorBreak GradientModel
From MapWindow GIS
GradientModel
Gets or sets the model used to color the break.
See also GradientModel
VB.NET Usage
Property GradientModel() As MapWinGIS.GradientModel
Parameters
|
ReturnValue | The gradient model used to color the break. |
Sample Code
Private Sub GradientModel()
Dim break As New MapWinGIS.GridColorBreak()
'Set the gradient model to use with the color break
break.GradientModel = MapWinGIS.GradientModel.Linear
'Display the gradient model used by the color break
MsgBox(break.GradientModel.ToString)
End Sub
VB 6 Usage
Property GradientModel() As GradientModel
Parameters
|
ReturnValue | The gradient model used to color the break. |
Sample Code
Private Sub GradientModel()
Dim break As New MapWinGIS.GridColorBreak
'Set the gradient model to use with the color break
break.GradientModel = Linear
'Display the gradient model used by the color break (integer representation)
MsgBox (break.GradientModel)
End Sub
















