You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
503 B
C

#pragma once
#include "commandbase.h"
#include "SFontPar.h"
class CCommandModifiFont :public CCommandBase
{
public:
CCommandModifiFont(void);
~CCommandModifiFont(void);
virtual CString GetStr(){return "<EFBFBD>޸<EFBFBD>font";};
virtual void ExcuteExt();
virtual void UndoExt();
void SetStringPar(SFontPar &par,bool b);
private:
void ReCreatObj(bool bExcute);
private:
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
SFontPar m_OldFontPar;
SFontPar m_NewFontPar;
};