[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["\u003cp\u003e\u003ccode\u003echrome.cast.Volume\u003c/code\u003e represents the volume of a device or media stream, providing control over level and mute status.\u003c/p\u003e\n"],["\u003cp\u003eIt can be initialized with \u003ccode\u003elevel\u003c/code\u003e (0.0-1.0) and \u003ccode\u003emuted\u003c/code\u003e (boolean) values, allowing for custom volume settings.\u003c/p\u003e\n"],["\u003cp\u003eKey properties include \u003ccode\u003econtrolType\u003c/code\u003e, indicating the type of volume control, \u003ccode\u003elevel\u003c/code\u003e for current volume, \u003ccode\u003emuted\u003c/code\u003e for mute status, and \u003ccode\u003estepInterval\u003c/code\u003e for allowed volume adjustments.\u003c/p\u003e\n"]]],["The `chrome.cast.Volume` class represents the volume of a device or media stream. It can be constructed with optional `level` (0.0-1.0) and `muted` (boolean) parameters. Key properties include `controlType` (volume control type), `level` (current volume), `muted` (mute status), and `stepInterval` (allowed volume change steps). Volume levels range from 0.0 to 1.0, where 1.0 is the maximum. The receiver's muted state is independent of volume.\n"],null,["# Class: Volume\n\nchrome.[cast](/cast/docs/reference/web_sender/chrome.cast).Volume\n=================================================================\n\nclass static\n\nThe volume of a device or media stream.\n\nConstructor\n-----------\n\n### Volume\n\nnew\nVolume(level, muted)\n\n| #### Parameter ||\n|-------|------------------------------------------------------|\n| level | Optional number The volume level. Value may be null. |\n| muted | Optional boolean The mute status. Value may be null. |\n\nProperties\n----------\n\n### controlType\n\nnon-null [chrome.cast.VolumeControlType](/cast/docs/reference/web_sender/chrome.cast#.VolumeControlType)\n\nThe type of volume control that is available.\n\n### level\n\nnullable number\n\nThe current volume level as a value between 0.0 and 1.0. 1.0 is the\nmaximum volume possible on the receiver or stream.\n\n### muted\n\nnullable boolean\n\nWhether the receiver is muted, independent of the volume level.\n\n### stepInterval\n\nnumber\n\nThe allowed steps for changing volume."]]