Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CopyRepetitions Property
See Also 
Leadtools Namespace > RasterBufferResize Class : CopyRepetitions Property



Holds the required number of copy repetitions.

Syntax

Visual Basic (Declaration)  
Public ReadOnly Property CopyRepetitions As Integer
Visual Basic (Usage) Copy Code
Dim instance As RasterBufferResize
Dim value As Integer
 
value = instance.CopyRepetitions
C#  
public int CopyRepetitions {get;}
C++/CLI  
public:
property int CopyRepetitions {
   int get();
}

Return Value

The number of times needed to copy the new resized line buffer to the new image.

Example

For an example, refer to RasterBufferResize.

Remarks

When an image is being enlarged, some lines must be copied more than once. When an image is being reduced, some lines must be eliminated (not copied at all).

For example:

  • A value of 0 means that the line should not be copied.
  • A value of 1 means that the line should be copied once.
  • A value of 2 means that the line should be copied twice.
  • And so on ....

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also