BaseGpsReceiverDrawSatellitesSignal(Graphics, Int32, Int32, Color, Color, Color, Int32) Method |
Draw the signals of satellites in view.
Red brush satellite - very low signal
Orange brush satellite - low signal
Yellow brush satellite - medium signal
Light green brush satellite - good signal
Green brush satellite - very good signal
Namespace: ZylSoft.GpsAssembly: ZylGpsReceiver (in ZylGpsReceiver.dll) Version: 3.29.9208.19412
XMLNS for XAML: Not mapped to an xmlns.
Syntaxpublic void DrawSatellitesSignal(
Graphics g,
int width,
int height,
Color backColor,
Color pseudoRandomCodeFontColor,
Color signalToNoiseRatioFontColor,
int maxSatelliteCount = 0
)
Public Sub DrawSatellitesSignal (
g As Graphics,
width As Integer,
height As Integer,
backColor As Color,
pseudoRandomCodeFontColor As Color,
signalToNoiseRatioFontColor As Color,
Optional maxSatelliteCount As Integer = 0
)
Dim instance As BaseGpsReceiver
Dim g As Graphics
Dim width As Integer
Dim height As Integer
Dim backColor As Color
Dim pseudoRandomCodeFontColor As Color
Dim signalToNoiseRatioFontColor As Color
Dim maxSatelliteCount As Integer
instance.DrawSatellitesSignal(g, width,
height, backColor, pseudoRandomCodeFontColor,
signalToNoiseRatioFontColor, maxSatelliteCount)
public:
void DrawSatellitesSignal(
Graphics^ g,
int width,
int height,
Color backColor,
Color pseudoRandomCodeFontColor,
Color signalToNoiseRatioFontColor,
int maxSatelliteCount = 0
)
member DrawSatellitesSignal :
g : Graphics *
width : int *
height : int *
backColor : Color *
pseudoRandomCodeFontColor : Color *
signalToNoiseRatioFontColor : Color *
?maxSatelliteCount : int
(* Defaults:
let _maxSatelliteCount = defaultArg maxSatelliteCount 0
*)
-> unit
public void DrawSatellitesSignal(
Graphics g,
int width,
int height,
Color backColor,
Color pseudoRandomCodeFontColor,
Color signalToNoiseRatioFontColor,
int maxSatelliteCount = 0
)
public function DrawSatellitesSignal(
g : Graphics,
width : int,
height : int,
backColor : Color,
pseudoRandomCodeFontColor : Color,
signalToNoiseRatioFontColor : Color,
maxSatelliteCount : int
)
function DrawSatellitesSignal(g, width, height, backColor, pseudoRandomCodeFontColor, signalToNoiseRatioFontColor, maxSatelliteCount);
METHOD DrawSatellitesSignal(
g AS Graphics,
width AS LONG,
height AS LONG,
backColor AS Color,
pseudoRandomCodeFontColor AS Color,
signalToNoiseRatioFontColor AS Color,
maxSatelliteCount AS LONG := 0
) AS VOID
No code example is currently available or this language may not be supported.
Parameters
- g Graphics
- GDI+ drawing surface.
- width Int32
- Width.
- height Int32
- Height.
- backColor Color
- Back color of the view.
- pseudoRandomCodeFontColor Color
- Color of pseudo random code.
- signalToNoiseRatioFontColor Color
- Color of signal to noise ratio.
- maxSatelliteCount Int32 (Optional)
- Maximum number of satellites to be shown.
See Also