Skip to main content

PageInsertedEventArgs Class

Definition

Assembly:Avalonia.Controls
Package:Avalonia
public class PageInsertedEventArgs

Inheritance: EventArgs -> PageInsertedEventArgs

Constructors

NameDescription
PageInsertedEventArgsInitializes a new instance of the Avalonia.Controls.PageInsertedEventArgs class.

PageInsertedEventArgs Constructor

Initializes a new instance of the Avalonia.Controls.PageInsertedEventArgs class.

public PageInsertedEventArgs(Avalonia.Controls.Page page, Avalonia.Controls.Page before)

Parameters

page Avalonia.Controls.Page

The page that was inserted.

before Avalonia.Controls.Page

The page before which the new page was inserted.

Properties

NameDescription
BeforeGets the page before which the new page was inserted.
PageGets the page that was inserted.

Before Property

Gets the page before which the new page was inserted.

public Avalonia.Controls.Page Before { get; set; }

Page Property

Gets the page that was inserted.

public Avalonia.Controls.Page Page { get; set; }