Color。
色のブルー RGB チャンネルの値を取得します。
public readonly int B
Public Readonly Property B As Integer
読み取り専用。
'VB code Public Sub Main() Dim myColor As Color(0,255,255,255) Dim blueValue As Integer blueValue = myColor.B() End Sub