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