'****************************************************************************** ' 定義 :Private Function createLayerFile() ' 概要 :レイヤ ファイルの作成 ' 第1引数 :ILayer レイヤ ファイルを作成する対象レイヤ ' 第2引数 :String レイヤ ファイルを作成するパス ' 第3引数 :String レイヤ ファイルを作成するファイル名(拡張子含む) ' 戻り値 :なし ' 更新履歴 :2008-01-22 作成 '****************************************************************************** Private Function createLayerFile(pLayer As ILayer, strPath As String, strName As String) Dim pLayerFile As ILayerFile Set pLayerFile = New LayerFile pLayerFile.New strPath & "\" & strName pLayerFile.ReplaceContents pLayer pLayerFile.Save pLayerFile.Close End Function
レイヤー ファイルの作成
2016/9/1 (木)