Embedding fonts

  • Thread starter Thread starter Joshua Moore
  • Start date Start date
J

Joshua Moore

Does anyone know how to access fonts that are added as embedded resources in
a c# compact framework app?

Thanks,
Joshua Moore
 
On the desktop you would have used AddFontMeResourceEx. On CE platform I
think your only recourse is to copy the resource data to a file and then
P/Invoke AddFontResource on it (and later - RemoveFontResource)
 
Back
Top