In This Article

LogicalTreeNodeCollectionEventArgs Class

Provides data for LogicalTreeNodeCollection events.

public class LogicalTreeNodeCollectionEventArgs : EventArgs
Inheritance:
object EventArgs object

Constructors

LogicalTreeNodeCollectionEventArgs(int, ILogicalTreeNode)

Initializes a new instance of the LogicalTreeNodeCollectionEventArgs class.

public LogicalTreeNodeCollectionEventArgs(int index, ILogicalTreeNode logicalTreeNode)
Parameter Type Description
index int

The index at which the component is/was located.

logicalTreeNode ILogicalTreeNode

The ILogicalTreeNode that is affected by this event.

Properties

Index

Gets the index at which the component is/was located.

public int Index { get; }

Property Value

int:

The index at which the component is/was located.

LogicalTreeNode

Gets the ILogicalTreeNode that is affected by this event.

public ILogicalTreeNode LogicalTreeNode { get; }

Property Value

ILogicalTreeNode:

The ILogicalTreeNode that is affected by this event.

Inherited Members