-
Notifications
You must be signed in to change notification settings - Fork 3
PropertyList.PropertyListObjectEventArgs
JaykeBird edited this page Feb 21, 2023
·
1 revision
Back to home | Back to Reference | View raw text
The event arguments for the LoadedObjectChanged event, when the loaded object changes in the PropertyList control.
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
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 |
The event arguments for the LoadedObjectChanged event, when the loaded object changes in the PropertyList control.
EventArgs
public PropertyListObjectEventArgs(object loadedObject, Type loadedType, bool isReload)
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 |
Create a new PropertyListObjectEventArgs.
public object LoadedObject { get; }
The object that was loaded into the PropertyList control.
public Type LoadedObjectType { get; }
The determined type of the object that was loaded into the PropertyList control.
public bool IsReload { get; }
Get if this event was triggered by reloading the current object, rather than
Generated with ModularDoc