NoteItem Interface

Represents a note in a Notes folder.

Namespace:  Microsoft.Office.Interop.Outlook
Assembly:  Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)

Syntax

'Declaration
<GuidAttribute("00063025-0000-0000-C000-000000000046")> _
<CoClassAttribute(GetType(NoteItemClass))> _
Public Interface NoteItem _
    Inherits _NoteItem
'Usage
Dim instance As NoteItem
[GuidAttribute("00063025-0000-0000-C000-000000000046")]
[CoClassAttribute(typeof(NoteItemClass))]
public interface NoteItem : _NoteItem

Remarks

This is a .NET interface derived from a COM coclass that is required by managed code for interoperability with the corresponding COM object. Use this derived interface to access all method, property, and event members of the COM object. However, if a method or event you want to use shares the same name under the same COM object, cast to the corresponding primary interface to call the method, and cast to the latest events interface to connect to the event. Refer to this topic for information about the COM object. For information about the method and property members of the COM object, see _NoteItem. For information about the event members of the COM object, see ItemEvents_Event.

A NoteItem is not customizable. If you open a new note, you will notice that it is not possible to place it in design time.

The Subject property of a NoteItem object is read-only because it is calculated from the body text of the note. Also, the NoteItemBody can only be rich text, so the properties that correspond to HTML and Microsoft Word content do not apply. Although the GetInspector property will work on notes, because notes can't be customized, some of the Inspector properties, methods, and events will not apply to NoteItem objects.

Use the CreateItem method to create a NoteItem object that represents a new note.

Use Item(index), where index is the index number of a note or a value used to match the default property of a note, to return a single NoteItem object from a Notes folder.

See Also

Reference

NoteItem Members

Microsoft.Office.Interop.Outlook Namespace