[[["わかりやすい","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-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003eDeveloperMetadataLocationType\u003c/code\u003e is an enumeration used to specify where developer metadata is associated within a Google Sheet.\u003c/p\u003e\n"],["\u003cp\u003eIt includes four location types: \u003ccode\u003eSPREADSHEET\u003c/code\u003e, \u003ccode\u003eSHEET\u003c/code\u003e, \u003ccode\u003eROW\u003c/code\u003e, and \u003ccode\u003eCOLUMN\u003c/code\u003e for associating metadata with the entire spreadsheet, a sheet, a row, or a column, respectively.\u003c/p\u003e\n"],["\u003cp\u003eTo use an enum, refer to it using the syntax \u003ccode\u003eSpreadsheetApp.DeveloperMetadataLocationType.[Property]\u003c/code\u003e, such as \u003ccode\u003eSpreadsheetApp.DeveloperMetadataLocationType.SPREADSHEET\u003c/code\u003e.\u003c/p\u003e\n"]]],["`DeveloperMetadataLocationType` defines the locations for developer metadata. It uses enumerated types accessed via `SpreadsheetApp.DeveloperMetadataLocationType`. The available properties include `SPREADSHEET` for top-level spreadsheet metadata, `SHEET` for whole sheet metadata, `ROW` for row-specific metadata, and `COLUMN` for column-specific metadata. Each property represents a specific type of location for associating metadata.\n"],null,["# Enum DeveloperMetadataLocationType\n\nDeveloperMetadataLocationType\n\nAn enumeration of the types of developer metadata location types.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSpreadsheetApp.DeveloperMetadataLocationType.SPREADSHEET`. \n\n### Properties\n\n| Property | Type | Description |\n|---------------|--------|-------------------------------------------------------------------------------------|\n| `SPREADSHEET` | `Enum` | The location type for developer metadata associated with the top-level spreadsheet. |\n| `SHEET` | `Enum` | The location type for developer metadata associated with a whole sheet. |\n| `ROW` | `Enum` | The location type for developer metadata associated with a row. |\n| `COLUMN` | `Enum` | The location type for developer metadata associated with a column. |"]]