Skip to content

Instantly share code, notes, and snippets.

@folkertsj
Created August 11, 2011 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save folkertsj/1139730 to your computer and use it in GitHub Desktop.
Save folkertsj/1139730 to your computer and use it in GitHub Desktop.
Code to create a new PageTypeTab
public class NewTab : PageTypeTab
{
public override string Name
{
get { return "New Tab"; } // name of tab in ui
}
public override int SortIndex
{
get { return 300; } // default is 100
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment