'DeclarationPublic Function DrawLineTextureFromGdPictureImage( _ ByVal ImageID As Integer, _ ByVal ImageTexture As Integer, _ ByVal SrcLeft As Integer, _ ByVal SrcTop As Integer, _ ByVal DstLeft As Integer, _ ByVal DstTop As Integer, _ ByVal PenWidth As Integer, _ ByVal AntiAlias As Boolean _ ) As GdPictureStatus
public GdPictureStatus DrawLineTextureFromGdPictureImage( int ImageID, int ImageTexture, int SrcLeft, int SrcTop, int DstLeft, int DstTop, int PenWidth, bool AntiAlias )
public function DrawLineTextureFromGdPictureImage( ImageID: Integer; ImageTexture: Integer; SrcLeft: Integer; SrcTop: Integer; DstLeft: Integer; DstTop: Integer; PenWidth: Integer; AntiAlias: Boolean ): GdPictureStatus;
public function DrawLineTextureFromGdPictureImage( ImageID : int, ImageTexture : int, SrcLeft : int, SrcTop : int, DstLeft : int, DstTop : int, PenWidth : int, AntiAlias : boolean ) : GdPictureStatus;
public: GdPictureStatus DrawLineTextureFromGdPictureImage( int ImageID, int ImageTexture, int SrcLeft, int SrcTop, int DstLeft, int DstTop, int PenWidth, bool AntiAlias )
public: GdPictureStatus DrawLineTextureFromGdPictureImage( int ImageID, int ImageTexture, int SrcLeft, int SrcTop, int DstLeft, int DstTop, int PenWidth, bool AntiAlias )
Parameters
- ImageID
 - GdPicture image identifier.
 - ImageTexture
 - GdPicture image identifier. Source image used for the texture.
 - SrcLeft
 - Specifies the x-coordinate of the starting point of the line.
 - SrcTop
 - Specifies the y-coordinate of the starting point of the line.
 - DstLeft
 - Specifies the x-coordinate of the ending point of the line.
 - DstTop
 - Specifies the y-coordinate of the ending point of the line.
 - PenWidth
 - The width, in pixel, of the pen used to draw the line.
 - AntiAlias
 - Set to True to apply the Antialiasing algorithm else False.
 
Return Value
            A member of the GdPictureStatus enumeration.
            
