Voice.SpeakDegreesSync() Method

Speak a value in degrees as degrees, minutes, and seconds. Returns only after speech is complete. Use only when absolutely necessary. No error is generated if speech is not available.

Syntax

Voice.SpeakDegreesSync(Degrees)

The method syntax has these parts:

Part Description
Degrees (Double) numeric value to be spoken in degrees/minutes/seconds
Return (Nothing) Does not return a value.

Remarks

Speaks the numeric value in degrees, minutes, and seconds, for example "eighty nine degrees, twenty minutes, six seconds". If the value is negative, it will say "minus" before speaking the value. SpeakDegrees() returns asynchronously; it may return before the text has been completely spoken. SpeakDegreesSync() will not return until the text has been spoken. Use SpeakDegrees() unless you absolutely must wait.