Class Info
তথ্য কনফিগারেশনের জন্য তথ্য ডেটা রয়েছে। ডেটা স্টুডিওতে তথ্য কীভাবে প্রদর্শিত হবে তা এর বৈশিষ্ট্য নির্ধারণ করে।
var cc = DataStudioApp.createCommunityConnector();
var config = cc.getConfig();
var info1 = config.newInfo()
.setId("info1")
.setText("This text gives some context on the configuration.");
পদ্ধতি
পদ্ধতি | রিটার্ন টাইপ | সংক্ষিপ্ত বিবরণ |
---|
setId(id) | Info | এই কনফিগারেশন এন্ট্রির জন্য অনন্য আইডি সেট করে। |
setText(text) | Info | এই কনফিগারেশন এন্ট্রির জন্য পাঠ্য সেট করে। |
বিস্তারিত ডকুমেন্টেশন
setId(id)
এই কনফিগারেশন এন্ট্রির জন্য অনন্য আইডি সেট করে।
পরামিতি
নাম | টাইপ | বর্ণনা |
---|
id | String | আইডি সেট করতে হবে। |
প্রত্যাবর্তন
Info
— এই নির্মাতা, চেইনিং জন্য.
setText(text)
এই কনফিগারেশন এন্ট্রির জন্য পাঠ্য সেট করে।
পরামিতি
নাম | টাইপ | বর্ণনা |
---|
text | String | টেক্সট সেট. |
প্রত্যাবর্তন
Info
— এই নির্মাতা, চেইনিং জন্য.
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-01-14 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-01-14 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["The `Info` object stores configuration data that influences how information is displayed in Data Studio."],["Developers can utilize the `setId` and `setText` methods to define the unique identifier and descriptive text for a configuration entry within the `Info` object."],["The `Info` object uses a builder pattern, allowing developers to chain methods together for streamlined configuration."]]],["The `Info` object, part of a Data Studio Community Connector configuration, displays information. `setId(id)` assigns a unique string ID, crucial for identifying the configuration entry. `setText(text)` sets the string text content to be displayed. Both methods return the `Info` object itself, allowing for method chaining. These actions allow for defining and displaying context within the Data Studio configuration.\n"]]