コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
blockly > blockRendering > ConstantProvider > getBlockStyle
blockRendering.ConstantProvider.getBlockStyle() メソッド
指定されたブロック スタイル名の BlockStyle を取得します。
署名:
getBlockStyle(blockStyleName: string | null): BlockStyle;
パラメータ
パラメータ |
型 |
説明 |
blockStyleName |
文字列 | null |
ブロック スタイルの名前。 |
戻り値:
BlockStyle
名前付きブロックスタイル。指定した名前のスタイルが見つからない場合は、デフォルト スタイルになります。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-25 UTC。"],[],["The `getBlockStyle()` method retrieves a `BlockStyle` object based on a provided `blockStyleName` (a string or null). It takes the style name as a parameter. If a style with the given name exists, it is returned; otherwise, a default style is provided. The method's return type is `BlockStyle`. This function is part of the `ConstantProvider` class within the `blockRendering` namespace.\n"]]