Stay organized with collections
Save and categorize content based on your preferences.
blockly > FieldImage > setOnClickHandler
FieldImage.setOnClickHandler() method
Set the function that is called when this image is clicked.
Signature:
setOnClickHandler(func: ((p1: FieldImage) => void) | null): void;
Parameters
Parameter |
Type |
Description |
func |
((p1: FieldImage) => void) | null |
The function that is called when the image is clicked, or null to remove. |
Returns:
void
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["The `setOnClickHandler` method allows you to assign a function that will be executed when the FieldImage is clicked."],["This function can be set to `null` to remove any existing click handler."],["The assigned function receives the FieldImage instance as an argument when invoked."]]],["The `setOnClickHandler` method within the `FieldImage` class sets a function to be executed when an image is clicked. It accepts a single parameter, `func`, which can be a function taking a `FieldImage` object as input or `null` to remove any existing click handler. This method has no return value. The provided function is activated upon a user clicking the associated image within the interface.\n"]]