DiagramNode Interface 

Represents a node in a diagram.

Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)

Usage

Public Class iagramNodeImplementation
    Implements DiagramNode
End Class
Dim iagramNodeImplementation1 As New iagramNodeImplementation()

Syntax

Public Interface DiagramNode
    Inherits _IMsoDispObj
public interface DiagramNode : _IMsoDispObj
public interface class DiagramNode : public _IMsoDispObj
public interface DiagramNode implements _IMsoDispObj
public interface DiagramNode implements _IMsoDispObj

Remarks

Use the AddNode method to add a node to a diagram or to a diagram node.

Use the Delete method to remove a node from a diagram or diagram node.

To return a DiagramNode object, use one of the following:

A diagram node can terminate, or it can contain other child diagrams, child diagram nodes, or child shapes. Refer to these with the following:

  • To refer to a child diagram, use the Diagram property.

  • To refer to an individual child diagram node, use the AddNode, CloneNode, NextNode or PrevNode methods or the Root property.

  • To refer to a collection of child diagram nodes, use the Children property.

  • To refer to a shape, use the Shape or TextShape properties.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Excel Namespace

Other Resources

DiagramNode Members