public void GetColorableItem(int iIndex, out IVsColorableItem ppItem)
 {
     if (iIndex < 1 || iIndex > 3)
     {
         throw new IndexOutOfRangeException();
     }
     ppItem = new StubContainedColorableItem(iIndex);
 }
 public void GetColorableItem(int iIndex, out IVsColorableItem ppItem)
 {
     if (iIndex < 1 || iIndex > 3)
         throw new IndexOutOfRangeException();
     ppItem = new StubContainedColorableItem(iIndex);
 }