Skip to content

PropertyList.PropertyListObjectEventArgs

JaykeBird edited this page Feb 21, 2023 · 1 revision

Back to home | Back to Reference | View raw text

PropertyListObjectEventArgs class

Description

The event arguments for the LoadedObjectChanged event, when the loaded object changes in the PropertyList control.

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SolidShineUi.PropertyList
  SolidShineUi.PropertyList.PropertyListObjectEventArgs[[PropertyListObjectEventArgs]]
  end
  subgraph System
System.EventArgs[[EventArgs]]
  end
System.EventArgs --> SolidShineUi.PropertyList.PropertyListObjectEventArgs
Loading

Members

Properties

Public properties

Type Name Methods
bool IsReload
Get if this event was triggered by reloading the current object, rather than
get
object LoadedObject
The object that was loaded into the PropertyList control.
get
Type LoadedObjectType
The determined type of the object that was loaded into the PropertyList control.
get

Details

Summary

The event arguments for the LoadedObjectChanged event, when the loaded object changes in the PropertyList control.

Inheritance

  • EventArgs

Constructors

PropertyListObjectEventArgs

public PropertyListObjectEventArgs(object loadedObject, Type loadedType, bool isReload)
Arguments
Type Name Description
object loadedObject The object being loaded in
Type loadedType the type of the object being loaded
bool isReload Set if this loading action actually a reload
Summary

Create a new PropertyListObjectEventArgs.

Properties

LoadedObject

public object LoadedObject { get; }
Summary

The object that was loaded into the PropertyList control.

LoadedObjectType

public Type LoadedObjectType { get; }
Summary

The determined type of the object that was loaded into the PropertyList control.

IsReload

public bool IsReload { get; }
Summary

Get if this event was triggered by reloading the current object, rather than

Generated with ModularDoc

Clone this wiki locally