예제 #1
0
        /// <summary>
        /// Gets the next sibling of the given item id using the base implementation.
        /// </summary>
        internal ItemId GetOriginalNextSibling(ItemId id)
        {
            object property;

            base.GetProperty(id.Value, (int)__VSHPROPID.VSHPROPID_NextSibling, out property);
            return(ItemId.Get(property));
        }
예제 #2
0
        /// <summary>
        /// Gets the first child of the given item id using the base implementation.
        /// </summary>
        internal ItemId GetOriginalFirstChild(ItemId id)
        {
            object property;

            base.GetProperty(id.Value, (int)__VSHPROPID.VSHPROPID_FirstChild, out property);
            return(ItemId.Get(property));
        }