INodeCustomizer.OnBeforeNodeShown(WorkspaceVisualNodeBase) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Modifies the visualization of a node before it's shown to the user. This may be called when the visual tree is refreshed either by the user or in response to some event. Operations to the node should be limited to visual changes and no functional changes should be made. Usage of UINode is advised.
public:
void OnBeforeNodeShown(Microsoft::VisualStudio::Workspace::VSIntegration::UI::WorkspaceVisualNodeBase ^ node);
public void OnBeforeNodeShown (Microsoft.VisualStudio.Workspace.VSIntegration.UI.WorkspaceVisualNodeBase node);
abstract member OnBeforeNodeShown : Microsoft.VisualStudio.Workspace.VSIntegration.UI.WorkspaceVisualNodeBase -> unit
Public Sub OnBeforeNodeShown (node As WorkspaceVisualNodeBase)
Parameters
The node to customize.