API Reference > imodeljs-frontend > Tools > ViewManip ViewManip Class Base class for tools that manipulate the frustum of a Viewport. Extends ViewTool Extended by PanViewTool RotateViewTool LookViewTool ScrollViewTool ZoomViewTool LookAndMoveTool WalkViewTool FlyViewTool Methods Name Description constructor(viewport: undefined | ScreenViewport, handleMask: number, oneShot: boolean, isDraggingRequired: boolean = false): ViewManip changeViewport(vp?: ScreenViewport): void decorate(context: DecorateContext): void Called to allow an active tool to display non-element decorations in overlay mode. enforceZUp(pivotPoint: Point3d): boolean isPointVisible(testPt: Point3d): boolean Determine whether the supplied point is visible in this Viewport. lensAngleMatches(angle: Angle, tolerance: number): boolean onCleanup(): void Invoked when the tool becomes no longer active, to perform additional cleanup logic onDataButtonDown(ev: BeButtonEvent): Promise<EventHandled> Invoked when the data button is pressed. onDataButtonUp(_ev: BeButtonEvent): Promise<EventHandled> Invoked when the data button is released. onKeyTransition(wentDown: boolean, keyEvent: KeyboardEvent): Promise<EventHandled> Called when any key is pressed or released. onModifierKeyTransition(wentDown: boolean, modifier: BeModifierKeys, event: KeyboardEvent): Promise<EventHandled> Called when Control, Shift, or Alt modifier keys are pressed or released. onMouseEndDrag(ev: BeButtonEvent): Promise<EventHandled> Invoked when the button is released after onMouseStartDrag. onMouseMotion(ev: BeButtonEvent): Promise<void> Invoked when the cursor is moving onMouseStartDrag(ev: BeButtonEvent): Promise<EventHandled> Invoked when the cursor begins moving while a button is depressed. onMouseWheel(inputEv: BeWheelEvent): Promise<EventHandled> Invoked when the mouse wheel moves. onPostInstall(): void Override to execute additional logic after tool becomes active onReinitialize(): void Override Call to reset tool to initial state onTouchCancel(ev: BeTouchEvent): Promise<void> Called when a touch point is interrupted in some way and needs to be dropped from the list of target touches. onTouchComplete(ev: BeTouchEvent): Promise<void> Called when the last touch point is removed from the surface completing the current gesture. onTouchEnd(ev: BeTouchEvent): Promise<void> Called when user removes a touch point by lifting a finger or stylus from the surface. onTouchMove(ev: BeTouchEvent): Promise<void> Called when a touch point moves along the surface. onTouchMoveStart(ev: BeTouchEvent, startEv: BeTouchEvent): Promise<EventHandled> Called after at least one touch point has moved for an appreciable time and distance along the surface to not be considered a tap. onTouchStart(ev: BeTouchEvent): Promise<void> Called when user adds a touch point by placing a finger or stylus on the surface. onTouchTap(ev: BeTouchEvent): Promise<EventHandled> Called when touch point(s) are added and removed from a surface within a small time window without any touch point moving. processFirstPoint(ev: BeButtonEvent): boolean processPoint(ev: BeButtonEvent, inDynamics: boolean): boolean provideToolAssistance(mainInstrKey: string, additionalInstr?: ToolAssistanceInstruction[]): void Beta setCameraLensAngle(lensAngle: Angle, retainEyePoint: boolean): ViewStatus setTargetCenterWorld(pt: Point3d, lockTarget: boolean, saveTarget: boolean): void Set the center of rotation for rotate handle. updateTargetCenter(): void fitView(viewport: ScreenViewport, animateFrustumChange: boolean, options?: ViewChangeOptions): void Static getDefaultTargetPointWorld(vp: Viewport): Point3d Static getFocusPlaneNpc(vp: Viewport): number Static zoomToAlwaysDrawnExclusive(viewport: ScreenViewport, options?: ViewChangeOptions): Promise<boolean> Static Inherited methods Name Inherited from Description applyToolSettingPropertyChange(_updatedValue: DialogPropertySyncItem): boolean ViewTool Used to receive property changes from UI. beginDynamicUpdate(): void ViewTool beginDynamics(): void ViewTool Call to initialize dynamics mode. bumpToolSetting(_settingIndex?: number): Promise<boolean> ViewTool Used to "bump" the value of a tool setting. changeLocateState(enableLocate: boolean, enableSnap?: boolean, cursor?: string, coordLockOvr?: CoordinateLockOverrides): void ViewTool Helper method to keep the view cursor, display of locate circle, and coordinate lock overrides consistent with AccuSnap.isLocateEnabled and AccuSnap.isSnapEnabled. decorateSuspended(_context: DecorateContext): void ViewTool Called to allow a suspended tool to display non-element decorations in overlay mode. endDynamicUpdate(): void ViewTool endDynamics(): void ViewTool Call to terminate dynamics mode. exitTool(): void ViewTool Do not override. filterHit(_hit: HitDetail, _out?: LocateResponse): Promise<LocateFilterStatus> ViewTool Invoked to allow tools to filter which elements can be located. getCurrentButtonEvent(ev: BeButtonEvent): void ViewTool Fill the supplied button event from the current cursor location. getDecorationGeometry(_hit: HitDetail): undefined | GeometryStreamProps ViewTool Called to allow snapping to pickable decoration geometry. getToolTip(_hit: HitDetail): Promise<string | HTMLElement> ViewTool Invoked before the locate tooltip is displayed to retrieve the information about the located element. initLocateElements(enableLocate: boolean = true, enableSnap?: boolean, cursor?: string, coordLockOvr?: CoordinateLockOverrides): void ViewTool Helper method for tools that need to locate existing elements. isCompatibleViewport(_vp: ScreenViewport, _isSelectedViewChange: boolean): boolean ViewTool isValidLocation(_ev: BeButtonEvent, _isButtonEvent: boolean): boolean ViewTool onDynamicFrame(_ev: BeButtonEvent, _context: DynamicsContext): void ViewTool Called to allow Tool to display dynamic elements. onInstall(): boolean ViewTool Override to execute additional logic when tool is installed. onMiddleButtonDown(_ev: BeButtonEvent): Promise<EventHandled> ViewTool Invoked when the middle mouse button is pressed. onMiddleButtonUp(_ev: BeButtonEvent): Promise<EventHandled> ViewTool Invoked when the middle mouse button is released. onResetButtonDown(_ev: BeButtonEvent): Promise<EventHandled> ViewTool Invoked when the reset button is pressed. onResetButtonUp(_ev: BeButtonEvent): Promise<EventHandled> ViewTool Invoked when the reset button is released. onSelectedViewportChanged(_previous: undefined | ScreenViewport, _current: undefined | ScreenViewport): void ViewTool Called when active view changes. onSuspend(): void ViewTool Notification of a ViewTool or InputCollector starting and this tool is being suspended. onUnsuspend(): void ViewTool Notification of a ViewTool or InputCollector exiting and this tool is being unsuspended. parseAndRun(..._args: string[]): boolean ViewTool Run this instance of a tool using a series of string arguments. reloadToolSettingsProperties(): void ViewTool Called by tool to inform UI to reload ToolSettings with new set of properties. run(..._args: any[]): boolean ViewTool Run this instance of a Tool. supplyToolSettingsProperties(): undefined | DialogItem[] ViewTool Used to supply list of properties that can be used to generate ToolSettings. syncToolSettingsProperties(syncData: DialogPropertySyncItem[]): void ViewTool Called by tool to synchronize the UI with property changes made by tool. testDecorationHit(_id: string): boolean ViewTool Called to support operations on pickable decorations, like snapping. register(namespace?: I18NNamespace, i18n?: I18N): void Static ViewTool Register this Tool class with the ToolRegistry. showPrompt(prompt: string): void Static ViewTool translate(val: string): string Static ViewTool Properties Name Type Description frustumValid boolean handleMask number inHandleModify boolean isDragging boolean isDraggingRequired boolean isZUp Accessor ReadOnly boolean nPts number oneShot boolean targetCenterLocked boolean targetCenterValid boolean targetCenterWorld Readonly Point3d Inherited properties Name Type Inherited from Description description Accessor ReadOnly string ViewTool Get the localized description string from this Tool's class description Accessor StaticReadOnly string ViewTool Get the localized description for this Tool class. This returns the value of "tools." + this.toolId + ".description" fromits registered Namespace (e.g. "en/MyApp.json"). If that key is not in the localization namespace,ViewTool.flyover is returned. englishKeyin Accessor StaticReadOnly string ViewTool Get the English keyin string for this Tool class. This returns the value of "tools." + this.toolId + ".keyin" fromits registered Namespace (e.g. "en/MyApp.json"). flyover Accessor ReadOnly string ViewTool Get the localized flyover string from this Tool's class flyover Accessor StaticReadOnly string ViewTool Get the localized flyover for this Tool class. This returns the value of "tools." + this.toolId + ".flyover" fromits registered Namespace (e.g. "en/MyApp.json"). If that key is not in the localization namespace,ViewTool.keyin is returned. hidden Static boolean ViewTool If true, this Tool will not appear in the list from ToolRegistry.getToolList. i18n Static I18N ViewTool The internationalization services instance used to translate strings from the namespace. iconSpec Accessor ReadOnly string ViewTool Get the iconSpec from this Tool's class. iconSpec Static string ViewTool The icon for this Tool. inDynamicUpdate boolean ViewTool isControlDown Accessor ReadOnly boolean ViewTool Convenience method to check whether control key is currently down without needing a button event. isDynamicsStarted Accessor ReadOnly boolean ViewTool Call to find out if dynamics are currently active. keyin Accessor ReadOnly string ViewTool Get the localized keyin string from this Tool's class keyin Accessor StaticReadOnly string ViewTool Get the localized keyin string for this Tool class. This returns the value of "tools." + this.toolId + ".keyin" fromits registered Namespace (e.g. "en/MyApp.json"). maxArgs Accessor StaticReadOnly undefined | number ViewTool The maximum number of arguments allowed by ViewTool.parseAndRun, or undefined if there is no maximum.If subclasses override ViewTool.parseAndRun, they should also override this method to indicate the maximumnumber of arguments their implementation expects. minArgs Accessor StaticReadOnly number ViewTool The minimum number of arguments allowed by ViewTool.parseAndRun. If subclasses override ViewTool.parseAndRun, they should alsooverride this method to indicate the minimum number of arguments their implementation expects. UI controls can usethis information to ensure the tool has enough information to execute. namespace Static I18NNamespace ViewTool The I18NNamespace that provides localized strings for this Tool. receivedDownEvent boolean ViewTool Used to avoid sending tools up events for which they did not receive the down event. toolId Accessor ReadOnly string ViewTool Get the toolId string for this Tool class. This string is used to identify the Tool in the ToolRegistry and is used to localizethe keyin, description, etc. from the current locale. toolId Static string ViewTool The unique string that identifies this tool. viewport undefined | ScreenViewport ViewTool Defined in core/frontend/src/tools/ViewTool.ts Line 299 Last Updated: 11 June, 2024