根据指定的最近打开文件组的索引,删除相应的最近打开文件组。

命名空间:  SuperMap.Desktop
程序集:  SuperMap.Desktop.Core (in SuperMap.Desktop.Core)
版本: dll

语法

C#
bool RemoveAt(
	int index
)

参数

index
Type: System..::.Int32
指定的最近打开文件组的索引。

返回值

删除成功返回 true;否则返回 false。

示例

以下代码示范如何移除最近文件组中指定索引值的文件子项。

CopyC#
//获取“最近使用的数据源”最近文件组。
IRecentFileGroup fileGroup = SuperMap.Desktop.Application.ActiveApplication.MainForm.RecentFileManager["最近使用的数据源"];

//移除该组中索引为1的文件子项。
fileGroup.RemoveAt(1);

请参见