EgtInterface :

- aggiunte EgtChangeTextHeight, EgtChangeTextItalic, EgtTextGetHeight e EgtTextGetItalic
- corrette EgtShowOnlyTable e EgtSurfTmFacetsContact per parametri BOOL e non bool.
This commit is contained in:
Dario Sassi
2019-08-02 17:35:40 +00:00
parent 59f89ebb8a
commit 413d919be3
3 changed files with 43 additions and 4 deletions
+14
View File
@@ -66,6 +66,20 @@ __stdcall EgtChangeTextFont( int nId, const wchar_t* wsNewFont)
return ( ExeChangeTextFont( nId, wstrztoA( wsNewFont)) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtChangeTextHeight( int nId, double dH)
{
return ( ExeChangeTextHeight( nId, dH) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtChangeTextItalic( int nId, BOOL bItl)
{
return ( ExeChangeTextItalic( nId, ( bItl != FALSE)) ? TRUE : FALSE) ;
}
//-------------------------------------------------------------------------------
BOOL
__stdcall EgtFlipText( int nId)