ATMLProject.managers.ProjectManager.RemoveATMLDocument C# (CSharp) 메소드

RemoveATMLDocument() 공개 정적인 메소드

public static RemoveATMLDocument ( string documentName, AtmlFileType atmlType ) : void
documentName string
atmlType AtmlFileType
리턴 void
        public static void RemoveATMLDocument( string documentName, AtmlFileType atmlType )
        {
            TestProgramSet currenTestProgramSet = Instance.CurrentTestProgramSet;
            if (currenTestProgramSet != null)
                currenTestProgramSet.RemoveATMLDocument( documentName, atmlType );
            ATMLNavigator.Instance.RemoveAtmlFile( documentName );
        }