Пример #1
0
 public HRESULT GetDisplayAttributeInfo(ref Guid guid, out ITfDisplayAttributeInfo ppInfo)
 {
     if (guid == GUID_DISPLAY_ARRTIBUTE_INFO)
     {
         ppInfo = new DisplayAttributeInfo();
         return(new HRESULT()
         {
             Code = 0
         });
     }
     else
     {
         ppInfo = null;
         return(new HRESULT()
         {
             Code = unchecked ((int)0x80070057)
         });
     }
 }
Пример #2
0
 HRESULT ITfDisplayAttributeProvider.GetDisplayAttributeInfo(ref Guid guid, out ITfDisplayAttributeInfo ppInfo)
 {
     throw new NotImplementedException();
 }