User (Legacy) Posted September 5, 2002 Report Share Posted September 5, 2002 I'm using ChartFX Client Server 5.1 on Visual C++ 6.0 You have a set of predefined fonts...I need another font,. I need to use IDispFont. Do you have an example with this Interface ? Quote Link to comment Share on other sites More sharing options...
Software FX Posted September 6, 2002 Report Share Posted September 6, 2002 IDispFont is a standard COM interrface (not ours) and as such it is documented in MSDN and VS docs. Basically here is how you will uses it with Chart FX: IFontDispPtr pFontDisp; m_pChartFX->get_PointLabelsFont(&pFontDisp); IFontPtr pFont = pFontDisp; pFont->put_Name(L"Arial Narrow"); -- FP Software FX, Inc. Quote Link to comment Share on other sites More sharing options...
User (Legacy) Posted September 6, 2002 Author Report Share Posted September 6, 2002 Tkx Andr Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.