Visual Basic RGB 函数

定义和用法

RGB 函数可返回表示 RGB 颜色值的数字。

语法
  1. RGB(red,green,blue)
参数描述
red必需的。介于 0 - 255 之间(且包括)的数字,代表颜色红色部分。
green必需的。介于 0 - 255 之间(且包括)的数字,代表颜色绿色部分。
blue必需的。介于 0 - 255 之间(且包括)的数字,代表颜色蓝色部分。

实例

例子 1
  1. Module Module1
  2. Sub Main()
  3. Console.WriteLine(rgb(255,0,0))
  4. End Sub
  5. End Module

输出:

  1. 255
例子 2
  1. Module Module1
  2. Sub Main()
  3. Console.WriteLine(rgb(255,30,30))
  4. End Sub
  5. End Module

输出:

  1. 1974015

分类导航