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.
nmWATI/Include/iPlot/iPlotBase/ZxRenderAlign.h

36 lines
594 B
C++

#pragma once
/// 对齐方式
namespace Zx
{
enum ChartObjAlign
{
/// 左对齐
alignLeft,
/// 右对齐
alignRight,
/// 上对齐
alignTop,
/// 下对齐
alignBottom,
/// 水平居中
alignHCenter,
/// 垂直居中
alignVCenter,
/// 水平等间隔
alignAverageHSpace,
/// 垂直等间隔
alignAverageVSpace,
/// 等宽
alignSameWidth,
/// 等高
alignSameHeight,
/// 等尺寸
alignSameSize
};
}