Delegate for handling EndCellLayoutEvent.

Namespace: Spire.Pdf.Tables
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public delegate void EndCellLayoutEventHandler(
	Object sender,
	EndCellLayoutEventArgs args
)
Public Delegate Sub EndCellLayoutEventHandler ( 
	sender As Object,
	args As EndCellLayoutEventArgs
)
public delegate void EndCellLayoutEventHandler(
	Object^ sender, 
	EndCellLayoutEventArgs^ args
)
type EndCellLayoutEventHandler = 
    delegate of 
        sender : Object * 
        args : EndCellLayoutEventArgs -> unit

Parameters

sender
Object
The sender of the event.
args
EndCellLayoutEventArgs
The arguments of the event.

Remarks

This event is raised when you have finished laying out a page.

See Also