Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 920 Bytes

TPJAnsiTextReadEvent.md

File metadata and controls

32 lines (19 loc) · 920 Bytes

TPJAnsiTextReadEvent method type

Project: I/O Utility Classes

Unit: PJPipeFilters

Applies to: ~>1.0

type
  TPJAnsiTextReadEvent = procedure(Sender: TObject;
    const Text: AnsiString) of object;

Description

This is an event handler type. It is the type of text read events triggered by pipe filter classes that read ANSI strings from pipes.

The parameters are:

  • Sender - Reference to the pipe filter object that triggered the event.

  • Text - ANSI text for which the event was triggered.

Remarks

This event handler type is used for the OnText and OnLineEnd events of TPJAnsiSBCSPipeFilter.

See Also