The percentage of the already transferred data.
The total size of the data left for transferring, in bytes.
The total size of the data to transfer, in bytes.





In This Topic
GdPicture14 Namespace / GdViewer.DataReceivedEventHandler Delegate

GdViewer.DataReceivedEventHandler Delegate

In This Topic
Syntax
'Declaration
 
<GuidAttribute("A7DD9B21-C058-32A5-8C21-64BB88FD8221")>
Public Delegate Sub GdViewer.DataReceivedEventHandler( _
   ByVal PercentProgress As Single, _
   ByVal SizeLeft As Integer, _
   ByVal TotalLength As Integer _
) 
[Guid("A7DD9B21-C058-32A5-8C21-64BB88FD8221")]
public delegate void GdViewer.DataReceivedEventHandler( 
   float PercentProgress,
   int SizeLeft,
   int TotalLength
)
public delegate GdViewer.DataReceivedEventHandler( 
    PercentProgress: Single;
    SizeLeft: Integer;
    TotalLength: Integer
);
GuidAttribute("A7DD9B21-C058-32A5-8C21-64BB88FD8221")
public delegate GdViewer.DataReceivedEventHandler( 
   PercentProgress : float,
   SizeLeft : int,
   TotalLength : int
)
[Guid("A7DD9B21-C058-32A5-8C21-64BB88FD8221")]
public: __gc __delegate void GdViewer.DataReceivedEventHandler( 
   float PercentProgress,
   int SizeLeft,
   int TotalLength
)
[Guid("A7DD9B21-C058-32A5-8C21-64BB88FD8221")]
public delegate void GdViewer.DataReceivedEventHandler( 
   float PercentProgress,
   int SizeLeft,
   int TotalLength
)

Parameters

PercentProgress
The percentage of the already transferred data.
SizeLeft
The total size of the data left for transferring, in bytes.
TotalLength
The total size of the data to transfer, in bytes.
See Also