Delete() public method

public Delete ( CoordinateSystemDefinition cs ) : void
cs FdoToolbox.Core.CoordinateSystems.CoordinateSystemDefinition
return void
コード例 #1
0
ファイル: CoordSysCatalog.cs プロジェクト: beritec/fdotoolbox
        private void btnDelete_Click(object sender, EventArgs e)
        {
            CoordinateSystemDefinition cs = this.SelectedCS;

            if (cs != null)
            {
                _presenter.Delete(cs);
            }
        }