[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Callback for the TReader.OnReadStringPropertyevent handler
Source position: classesh.inc line 909
type TReadWriteStringPropertyEvent = procedure( |
Sender: TObject; |
const Instance: TPersistent; |
PropInfo: PPropInfo; |
var Content: String |
) of object; |
TReadWriteStringPropertyEventis the prototype for the TReader.OnReadStringPropertyevent handler. Readeris the sender of the event, Instanceis the instance that is being streamed. PropInfois a pointer to the RTTI information for the property being read. Contentis the string as it was read from the stream.
|
Handler for translating strings when read from the stream. |