Vidka.Core.EditorLogic.ZoomIn C# (CSharp) 메소드

ZoomIn() 공개 메소드

public ZoomIn ( int width ) : void
width int
리턴 void
        public void ZoomIn(int width)
        {
            ___UiTransactionBegin();
            //Dimdim.ZoomIn(mouseX); // I decided not to zoom into the mouse... too unstable
            Dimdim.ZoomIn(Dimdim.convert_Frame2ScreenX(UiObjects.CurrentMarkerFrame), width);
            UpdateCanvasWidthFromProjAndDimdim();
            UpdateCanvasScrollXFromDimdim();
            ___UiTransactionEnd();
        }
EditorLogic