Skip to content

XUINotification

Description

Represents an in-app notification (i.e. a notification that can be passed between objects within your app.

Comprises a string key and optional arbitrary data. The sending of notifications is done through the NotificationCenter.

Properties

Name Type Read-Only
Data Variant
Key String
Sender Variant

Methods

Name Parameters Returns
Constructor sender As Variant, key As String, data As Variant

Property Descriptions

Data As Variant

Optional data carried by this notification.


Key As String

A string key identifying this notification.


Sender As Variant

The object that sent this notification.


Method Descriptions

Constructor(sender As Variant, key As String, data As Variant)

The default constructor.

sender is the object that sent this notification. key is the string key. data is optional arbitrary data.