AGS.Editor.GUIController.ZoomToFile C# (CSharp) Метод

ZoomToFile() публичный Метод

public ZoomToFile ( string fileName, string function ) : void
fileName string
function string
Результат void
        public void ZoomToFile(string fileName, string function)
        {
            if (OnZoomToFile != null)
            {
                ZoomToFileEventArgs evArgs = new ZoomToFileEventArgs(fileName, ZoomToFileZoomType.ZoomToText, 0, "function " + function + "(", false, null, true);
                evArgs.SelectLine = false;
                evArgs.ZoomToLineAfterOpeningBrace = true;
                OnZoomToFile(evArgs);
            }
        }

Same methods

GUIController::ZoomToFile ( string fileName ) : void
GUIController::ZoomToFile ( string fileName, ZoomToFileZoomType zoomType, int zoomToPosition ) : void
GUIController::ZoomToFile ( string fileName, ZoomToFileZoomType zoomType, int zoomPosition, bool isDebugExecutionPoint ) : void
GUIController::ZoomToFile ( string fileName, ZoomToFileZoomType zoomType, int zoomPosition, bool isDebugExecutionPoint, bool selectWholeLine, string errorMessage, bool activateEditor ) : void
GUIController::ZoomToFile ( string fileName, int lineNumber ) : void
GUIController::ZoomToFile ( string fileName, int lineNumber, bool isDebugExecutionPoint, string errorMessage ) : void
GUIController