Click or drag to resize
AB4D logo

MouseCameraController.IsMouseButtonsConditionTrue Method

IsMouseButtonsConditionTrue returns true when the correct mouse button is pressed according to the specified conditions (only mouse part of the conditions are checked; keyboard part is checked in IsKeyboardConditionTrue).

Namespace: Ab3d.Controls
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.2.9104.2045
Syntax
C#
protected virtual bool IsMouseButtonsConditionTrue(
	MouseCameraController.MouseAndKeyboardConditions conditions,
	bool isLeftButtonPressed,
	bool isMiddleButtonPressed,
	bool isRightButtonPressed
)

Parameters

conditions  MouseCameraController.MouseAndKeyboardConditions
MouseAndKeyboardConditions
isLeftButtonPressed  Boolean
true if left mouse button is pressed
isMiddleButtonPressed  Boolean
true if middle mouse button is pressed
isRightButtonPressed  Boolean
true if right mouse button is pressed

Return Value

Boolean
true when the correct mouse button is pressed according to the specified conditions
See Also