mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
open/save docx tblCaption,tblDescription and xlsx altText, altTextSummary
This commit is contained in:
@ -288,7 +288,9 @@ extern int g_nCurFormatVersion;
|
||||
tblPrChange = 13,
|
||||
TableCellSpacing = 14,
|
||||
RowBandSize = 15,
|
||||
ColBandSize = 16
|
||||
ColBandSize = 16,
|
||||
tblCaption = 17,
|
||||
tblDescription = 18
|
||||
};}
|
||||
namespace c_oSer_tblpPrType{enum c_oSer_tblpPrType
|
||||
{
|
||||
|
||||
@ -1846,6 +1846,16 @@ namespace BinDocxRW
|
||||
m_oBcw.WriteItemEnd(nCurPos);
|
||||
}
|
||||
}
|
||||
if(tblPr.m_oTblCaption.IsInit())
|
||||
{
|
||||
m_oBcw.m_oStream.WriteBYTE(c_oSerProp_tblPrType::tblCaption);
|
||||
m_oBcw.m_oStream.WriteStringW(tblPr.m_oTblCaption->ToString2());
|
||||
}
|
||||
if(tblPr.m_oTblDescription.IsInit())
|
||||
{
|
||||
m_oBcw.m_oStream.WriteBYTE(c_oSerProp_tblPrType::tblDescription);
|
||||
m_oBcw.m_oStream.WriteStringW(tblPr.m_oTblDescription->ToString2());
|
||||
}
|
||||
}
|
||||
void WriteTblMar(const OOX::Logic::CTblCellMar& cellMar)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user