MediaElement.IsMuted 속성

정의

오디오가 음소거되어 있는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool IsMuted { bool get(); void set(bool value); };
bool IsMuted();

void IsMuted(bool value);
public bool IsMuted { get; set; }
var boolean = mediaElement.isMuted;
mediaElement.isMuted = boolean;
Public Property IsMuted As Boolean
<MediaElement IsMuted="bool" .../>

속성 값

Boolean

bool

오디오 가 음소거되면 true이고, 그렇지 않으면 false입니다. 기본값은 false입니다.

적용 대상