> For the complete documentation index, see [llms.txt](https://docs.plumvoice.com/dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.plumvoice.com/dev/voicexml/properties/voicegender.md).

# voicegender

## voicegender <a href="#voicegender" id="voicegender"></a>

**Default Value:** depends on system

This property globally sets the default gender for a VoiceXML script.

### Example

```markup
<?xml version="1.0"?>
<vxml version="2.0">
  <property name="voicegender" value="female"/>
  <form>
    <field name="myfield">
      <grammar type="application/x-jsgf" mode="voice">
        ( one | two )+
      </grammar>
      <prompt>
        Say any number of the digits one or two.
      </prompt>
      <filled>
        You said <value expr="myfield"/>.
      </filled>
    </field>
  </form>
</vxml>
```

### Explanation

None

### Notes

This property will only work if you have stand alone TTS-only prompts. It will not work if there is a mix of TTS and audio prompts within your script.
