EgtGeomKernel :

- a ExtText aggiunti metodi ChangeHeight e ChangeItalic.
This commit is contained in:
Dario Sassi
2019-08-02 17:31:21 +00:00
parent af57986474
commit b17978b755
2 changed files with 26 additions and 0 deletions
+24
View File
@@ -872,6 +872,30 @@ ExtText::ChangeFont( const string& sFont)
return true ;
}
//----------------------------------------------------------------------------
bool
ExtText::ChangeHeight( double dH)
{
// imposto ricalcolo della grafica
m_OGrMgr.Reset() ;
// assegno nuova altezza
m_dHeight = dH ;
return true ;
}
//----------------------------------------------------------------------------
bool
ExtText::ChangeItalic( bool bItl)
{
// imposto ricalcolo della grafica
m_OGrMgr.Reset() ;
// assegno nuovo flag di talico
m_bItalic = bItl ;
return true ;
}
//----------------------------------------------------------------------------
bool
ExtText::SplitOnLineBreak( IEXTTEXTPVECTOR& vText) const