VsTeXProject.TeXProjectNode.GetPriorityProjectDesignerPages C# (CSharp) Method

GetPriorityProjectDesignerPages() protected method

Overriding to provide project general property page.
protected GetPriorityProjectDesignerPages ( ) : System.Guid[]
return System.Guid[]
        protected override Guid[] GetPriorityProjectDesignerPages()
        {
            Guid[] result = new Guid[1];
            result[0] = typeof(GeneralPropertyPage).GUID;
            return result;
        }