[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-07-25 (UTC)."],[[["\u003cp\u003e\u003ccode\u003eVolumeEventData\u003c/code\u003e provides information about receiver volume changes, including current volume level and mute state.\u003c/p\u003e\n"],["\u003cp\u003eIt is triggered when the receiver's volume or mute state is changed and includes properties like \u003ccode\u003evolume\u003c/code\u003e and \u003ccode\u003eisMute\u003c/code\u003e to access the updated values.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003evolume\u003c/code\u003e property represents the current volume level, ranging from 0 to 1, while \u003ccode\u003eisMute\u003c/code\u003e indicates whether the device is muted.\u003c/p\u003e\n"]]],["The `VolumeEventData` class provides information about receiver volume or mute changes. It's constructed with `volume` (a number from 0 to 1, representing the current volume, which can be null) and `isMute` (a boolean indicating if the device is muted, which can also be null). The class has two properties: `isMute` (a nullable boolean indicating mute status) and `volume` (a nullable number indicating the current volume).\n"],null,["# Class: VolumeEventData\n\ncast.[framework](/cast/docs/reference/web_sender/cast.framework).VolumeEventData\n================================================================================\n\nclass static\n\nReceiver volume or mute changed event data.\n\nConstructor\n-----------\n\n### VolumeEventData\n\nnew\nVolumeEventData(volume, isMute)\n\n| #### Parameter ||\n|--------|-----------------------------------------------------------------------------|\n| volume | number Current volume in range 0 to 1 (1 is max volume). Value may be null. |\n| isMute | boolean True if device is muted. Value may be null. |\n\nProperties\n----------\n\n### isMute\n\nnullable boolean\n\nTrue if device is muted.\n\n### volume\n\nnullable number\n\nCurrent volume in range 0 to 1 (1 is max volume)."]]