Share via


Sprite.Draw Method (Texture, Rectangle, Vector3, Vector3, Color)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Adds a sprite to the list of batched sprites.

Namespace:  Microsoft.WindowsMobile.DirectX.Direct3D
Assembly:  Microsoft.WindowsMobile.DirectX (in Microsoft.WindowsMobile.DirectX.dll)

Syntax

'Declaration
Public Sub Draw ( _
    srcTexture As Texture, _
    srcRectangle As Rectangle, _
    center As Vector3, _
    position As Vector3, _
    color As Color _
)
'Usage
Dim instance As Sprite
Dim srcTexture As Texture
Dim srcRectangle As Rectangle
Dim center As Vector3
Dim position As Vector3
Dim color As Color

instance.Draw(srcTexture, srcRectangle, _
    center, position, color)
public void Draw(
    Texture srcTexture,
    Rectangle srcRectangle,
    Vector3 center,
    Vector3 position,
    Color color
)
public:
void Draw(
    Texture^ srcTexture, 
    Rectangle srcRectangle, 
    Vector3 center, 
    Vector3 position, 
    Color color
)
member Draw : 
        srcTexture:Texture * 
        srcRectangle:Rectangle * 
        center:Vector3 * 
        position:Vector3 * 
        color:Color -> unit 

Parameters

  • srcRectangle
    Type: System.Drawing.Rectangle
    A Rectangle object that indicates the portion of the source texture to use for the sprite. Specify Empty to use the entire source image for the sprite.
  • color
    Type: System.Drawing.Color
    A Color structure. The color and alpha channels are modulated by this value. The Transparent value maintains the original source color and alpha data.

Exceptions

Exception Condition
InvalidCallException

The method call is invalid. For example, a method's parameter may contain an invalid value.

.NET Framework Security

Platforms

Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Compact Framework

Supported in: 3.5, 2.0

See Also

Reference

Sprite Class

Sprite Members

Draw Overload

Microsoft.WindowsMobile.DirectX.Direct3D Namespace