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.
21 lines
535 B
21 lines
535 B
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 = ""); |
|
} |
|
}
|
|
|