Stay organized with collections
Save and categorize content based on your preferences.
blockly > FieldLabelSerializable > (constructor)
FieldLabelSerializable.(constructor)
Constructs a new instance of the FieldLabelSerializable
class
Signature:
constructor(value?: string, textClass?: string, config?: FieldLabelConfig);
Parameters
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 `FieldLabelSerializable` constructor creates a new field instance for displaying non-editable text."],["It accepts optional parameters for initial value (`value`), CSS class (`textClass`), and field configuration (`config`)."],["The `value` parameter sets the initial text content, defaulting to an empty string if not provided."],["`config` allows further customization using properties defined in the FieldLabelConfig interface."]]],["The `FieldLabelSerializable` class constructor creates a new field instance. It accepts three optional parameters: `value` (initial field value, defaulting to an empty string), `textClass` (CSS class for the field's text), and `config` (a map of configuration options). The `config` parameter's supported properties are detailed in the field creation documentation. These parameters are used to initialize the properties of the created field.\n"]]