Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
Start Method
See Also 
Leadtools Namespace > RasterBufferResize Class : Start Method




oldWidth
Specifies the original width of the image.
oldHeight
Specifies the original height of the image.
newWidth
Specifies the new width for the image.
newHeight
Specifies the new height for the image.
Sets up information for the ResizeBuffer method.

Syntax

Visual Basic (Declaration) 
Public Sub Start( _
   ByVal oldWidth As Integer, _
   ByVal oldHeight As Integer, _
   ByVal newWidth As Integer, _
   ByVal newHeight As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterBufferResize
Dim oldWidth As Integer
Dim oldHeight As Integer
Dim newWidth As Integer
Dim newHeight As Integer
 
instance.Start(oldWidth, oldHeight, newWidth, newHeight)
C# 
public void Start( 
   int oldWidth,
   int oldHeight,
   int newWidth,
   int newHeight
)
Managed Extensions for C++ 
public: void Start( 
   int oldWidth,
   int oldHeight,
   int newWidth,
   int newHeight
) 
C++/CLI 
public:
void Start( 
   int oldWidth,
   int oldHeight,
   int newWidth,
   int newHeight
) 

Parameters

oldWidth
Specifies the original width of the image.
oldHeight
Specifies the original height of the image.
newWidth
Specifies the new width for the image.
newHeight
Specifies the new height for the image.

Example

For an example, refer to RasterBufferResize.

Remarks

For more information, refer to Processing an Image.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also