browser class : IsMuted(bool) setter
Description
Sets a value that indicates whether audio output is muted.
Syntax
instance.IsMuted = value;
Assigned value
Class | Description |
bool | Whether audio output is muted. |
Return value
None.
Sample code
1: | browser b = new browser(); // Main-browser |
2: | b.IsMuted = true; |
Notes
Assigns true if you want to mute. Otherwise, assigns false.
Links for reference
None.