AGS.Editor.GUIController.ShowCheckOutDialog C# (CSharp) Method

ShowCheckOutDialog() public method

public ShowCheckOutDialog ( string fileName ) : bool
fileName string
return bool
        public bool ShowCheckOutDialog(string fileName)
        {
            List<string> fileNames = new List<string>();
            fileNames.Add(fileName);
            return ShowCheckOutDialog(fileNames);
        }

Same methods

GUIController::ShowCheckOutDialog ( List fileNames ) : bool
GUIController