HTML DOM bufferDepth 属性

คำนิยามและวิธีใช้

bufferDepth 属性 กำหนดหรือคืนค่า ความลึกของบิตของชิ้นเสื้อสีในบ buffer bitmap ที่อยู่นอกหน้าจอ

ภาษาบูท

screen.bufferDepth=number

ตัวอย่าง

<html>
<body>
<script type="text/javascript">
document.write("<p>Buffer Depth: ")
document.write(screen.bufferDepth + "</p>")
</script>
</body>
</html>