WriteableBitmap Constructor (Int32, Int32)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new instance of the WriteableBitmap class using the provided dimensions.
Namespace: System.Windows.Media.Imaging
Assembly: System.Windows (in System.Windows.dll)
Syntax
'Declaration
<SecuritySafeCriticalAttribute> _
Public Sub New ( _
pixelWidth As Integer, _
pixelHeight As Integer _
)
[SecuritySafeCriticalAttribute]
public WriteableBitmap(
int pixelWidth,
int pixelHeight
)
Parameters
- pixelWidth
Type: System.Int32
The width of the bitmap.
- pixelHeight
Type: System.Int32
The height of the bitmap.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | pixelWidth or pixelHeight is zero or less. |
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also