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.
|
|
|
|
using KGIS.Framework.Utils.Model;
|
|
|
|
|
|
|
|
|
|
namespace kingo.Plugin.BGResultManager.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 = "");
|
|
|
|
|
}
|
|
|
|
|
}
|