Skip to main content

NotesOutline

Properties

NameDescription
Alias (NotesOutline)Read-write. Alias name of the outline, used for programmatic access.
Comment (NotesOutline)Read-write. A brief description of the outline.
Name (NotesOutline)Read-write. Programmatic name for accessing an outline.
ParentDatabase (NotesOutline)Read-only. The parent database that contains an Outline object.

Methods

NameDescription
AddEntry (NotesOutline)Adds a new entry to the outline.
CreateEntry (NotesOutline)Creates a new entry and adds it to the outline.
CreateEntryFromCreates a copy of an existing outline entry.
GetChild (NotesOutline)Returns the child of the specified entry.
GetFirst (NotesOutline)Gets the first entry of an outline.
GetLast (NotesOutline)Gets the last entry of an outline.
GetNext (NotesOutline)Given an entry in an outline, returns the entry immediately following it.
GetNextSibling (NotesOutline)Given an entry in an outline, returns the entry immediately following it at the same level.
GetParent (NotesOutline)Given a response entry in an outline, returns its parent entry.
GetPrev (NotesOutline)Given an entry in an outline, returns the entry immediately preceding it.
GetPrevSibling (NotesOutline)Given an entry in an outline, returns the entry immediately preceding it at the same level.
MoveEntryMoves an outline entry and subentries from one location to another.
RemoveEntryDeletes an entry and its subentries from an outline.
Save (NotesOutline)Saves any changes you have made to the outline.

Examples

NameDescription
Examples: AddEntry method (NotesOutline)1. This example creates a new parent entry called Home at the end of the "Web site" outline.
Examples: Alias property (NotesOutline)This script displays the alias of an outline.
Examples: Comment property (NotesOutline)This script displays the text contained in the comment property of an outline.
Examples: GetChild method (NotesOutline)This example retrieves the child of the first entry in the products outline and sets the value of its URL property to http://www.acme.com.
Examples: GetFirst method (NotesOutline)This script retrieves the first outline entry in the "products" outline and displays its label.
Examples: GetLast method (NotesOutline)This script retrieves the last entry in the "products" outline and displays its label.
Examples: GetNext method (NotesOutline)This script uses the GetNext method to retrieve the second entry in the "products" outline and displays its label.
Examples: GetNextSibling method (NotesOutline)This script uses the GetNextSibling method to retrieve the second sibling of the first entry in the "products" outline and displays its label.
Examples: GetParent method (NotesOutline)This script displays the label of the parent of the last entry in the "products" outline.
Examples: GetPrev method (NotesOutline)This script returns the label of the entry previous to the last entry in the "products" outline.
Examples: GetPrevSibling method (NotesOutline)This script displays the label of the sibling preceding the last entry in the "products" outline.
Examples: Name property (NotesOutline)This script displays the name of an outline.
Examples: ParentDatabase property (NotesOutline)This Visual Basic code displays the parent title of a NotesOutline object.