class PanelEvent

in global :: Sandbox . UI

Base event. See .


public Panel This { get; set; }

The panel on which the event is being called. For example, if you have a button with a label.. when the button gets clicked the actual click event might come from the label. When the event is called on the label, This will be the label. When the event propagates up to the button This will be the button - but Target will be the label. This is mainly of use with Razor callbacks, where you want to get the actual panel that created the event.

public string Name { get; set; }

😔 No documentation found.

public object Value { get; set; }

😔 No documentation found.

public float Time { get; set; }

😔 No documentation found.

public string Button { get; set; }

😔 No documentation found.

public Panel Target { get; set; }

😔 No documentation found.

public bool Is( string name )

😔 No documentation found.

public void StopPropagation( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public PanelEvent( string eventName, Panel active = null )

😔 No documentation found.