AddIn Development – New Note Types

NEW NOTE TYPES

Naming

Names come from various places.

Menu Name

public override void RegisterType ()
{
Layout.LayoutDetails.Instance.AddToList(typeof(NoteDataXML_Market), “**MENU NAME**”);
}

**Menu Name** – This is the name that will appear in the Add Note Menu.

Default Caption

The default caption is in the main note class:
private void CommonConstructor ()
{

Caption = Loc.Instance.GetString(“My Default Note Name”);

Leave a Reply

You must be logged in to post a comment.