Click or drag to resize

VisualAspectRemoved Event

Raised when an aspect is removed from this Visual.

Namespace:  Demo3D.Visuals
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public event Action<Visual, Object> AspectRemoved

Value

Type: SystemActionVisual, Object
Examples
C#
void LogAspectRemoved(Visual visual) {
    visual.AspectRemoved += (v, a) => System.Console.WriteLine($"Aspect removed from {v.Name} of type: {a.GetType()}");
}
See Also