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.
17 lines
418 B
C++
17 lines
418 B
C++
#pragma once
|
|
#include "commandBase.h"
|
|
class CCommandStretch :public CCommandBase
|
|
{
|
|
public:
|
|
CCommandStretch(void);
|
|
~CCommandStretch(void);
|
|
virtual CString GetStr();
|
|
virtual void ExcuteExt();
|
|
virtual void UndoExt();
|
|
void SetOperateParY(SObjOperatePar par);
|
|
private:
|
|
bool m_bSetXY;//是否同时设置XY 方向
|
|
SObjOperatePar m_ParY;//操作参数
|
|
};
|
|
|