Click or drag to resize

ReadSegmentEventArgs Class

Represents the class that contain event data for ReadSegment event. This event called by SDK to read some data from custom source.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    Patagames.Pdf.Net.EventArgumentsReadSegmentEventArgs

Namespace: Patagames.Pdf.Net.EventArguments
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntax
public class ReadSegmentEventArgs : EventArgs

The ReadSegmentEventArgs type exposes the following members.

Constructors
 NameDescription
Public methodReadSegmentEventArgs Construct ReadSegmentEventArgs object.
Top
Properties
 NameDescription
Public propertyDstBuffer Buffer for data allocated inside SDK
Public propertyIsSuccess Should be true if successful, false for error.
Public propertySegmentOffset Position is specified by byte offset from beginning of the file.
Public propertySegmentSize Buffer size
Public propertyUserData Custom user data
Top
Remarks
SegmentOffset is specified by byte offset from beginning of the file. It may be possible for SDK to call this event multiple times for same position.
See Also