public void GetPages(ref CAUUID pPages)
        {
            Guid[] g = new Guid[2];

            g[0] = typeof(RSSLayerProps).GUID;
            g[1] = typeof(RSSLayerProps2).GUID;
            pPages.SetPages(g);
        }
Exemple #2
0
        /// <summary>
        /// ills an array of CLSIDs for each property page that can be displayed in this object's property sheet.
        /// </summary>
        /// <param name="pPages">Pointer to a caller-allocated CAUUID structure that must be initialized and filled before returning.</param>
        public void GetPages(ref CAUUID pPages)
        {
            Guid[] g = new Guid[1];

              g[0] = typeof(SymbolSelectorPropPage).GUID;
              pPages.SetPages(g);
        }
    public void GetPages(ref CAUUID pPages)
    {
      Guid[] g = new Guid[2];

      g[0] = typeof(RSSLayerProps).GUID;
      g[1] = typeof(RSSLayerProps2).GUID;
      pPages.SetPages(g);
    }