.NET Framework 类库 |
Unit.Pixel 方法
从指定的 32 位有符号整数创建 Pixel 类型的 。
[Visual Basic]Public Shared Function Pixel( _ ByVal n As _) As [C#]public static Pixel( n);[C++]public: static Pixel( n);[JScript]public static function Pixel( n : ) : ;
参数
- n
- 表示 的长度的 32 位有符号整数。
返回值
Pixel 类型的 ,它表示 n 参数指定的长度。
备注
使用 Pixel 静态方法创建 Pixel 类型的 ,它表示由 n 参数指定的长度。
示例
[Visual Basic] . . . <%@ Page language="VB" AutoEventWireup="true" %><%@ Import Namespace="System.Drawing" %>[C#] . . . <%@ Page language="C#" AutoEventWireup="true" %><%@ Import Namespace="System.Drawing" %>