| 
PageLayoutHandler Delegate
  | 
 Represents the method that will handle an event that with event data.
 Namespace:
 Spire.Doc.Documents.Rendering
 Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
 Syntax
Syntax
 
 
public delegate void PageLayoutHandler(
	Object sender,
	PageLayoutEventArgs args
)
 
Public Delegate Sub PageLayoutHandler ( 
	sender As Object,
	args As PageLayoutEventArgs
)
 
public delegate void PageLayoutHandler(
	Object^ sender, 
	PageLayoutEventArgs^ args
)
 
type PageLayoutHandler = 
delegate of 
sender : Object * 
args : PageLayoutEventArgs -> unit
 
 
 
Parameters
 
- 
sender
 
- 
 Type:
 
System
Object
 
 The source of the event
- 
args
 
- 
 Type:
 
Spire.Doc.Documents.Rendering
PageLayoutEventArgs
 
 args that contains event data
 
 See Also
See Also