年度变更建库软件5.0版本
You can not 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
535 B

4 months ago
using KGIS.Framework.Utils.Model;
namespace Kingo.Plugin.YJJK.Interface
{
public interface IVCTExport
{
/// <summary>
/// 输出路径
/// </summary>
string OutPath { get; set; }
/// <summary>
/// 比例尺
/// </summary>
ScaleCodeTable Scale { get; set; }
/// <summary>
/// 导出报表
/// </summary>
/// <param name="haspdt">是否包含坡度图</param>
void ExportVCT(bool haspdt,string sTheMDBPath = "");
}
}