Class CollapseControl

সঙ্কুচিত নিয়ন্ত্রণ

একটি কাস্টমাইজযোগ্য পতন এবং নিয়ন্ত্রণ প্রসারিত.

শুধুমাত্র Google Chat অ্যাপের জন্য উপলব্ধ। Google Workspace অ্যাড-অনগুলির জন্য উপলব্ধ নয়।

const collapseButton =
    CardService.newTextButton()
        .setTextButtonStyle(CardService.TextButtonStyle.BORDERLESS)
        .setText('less less')
        .setMaterialIcon(CardService.newMaterialIcon().setName('bug_report'));

const expandButton =
    CardService.newImageButton()
        .setImageButtonStyle(CardService.ImageButtonStyle.FILLED)
        .setMaterialIcon(CardService.newMaterialIcon().setName('bug_report'));

const collapseControl =
    CardService.newCollapseControl()
        .setHorizontalAlign(CardService.HorizontalAlignment.END)
        .setExpandButton(expandButton)
        .setCollapseButton(collapseButton);

পদ্ধতি

পদ্ধতি রিটার্ন টাইপ সংক্ষিপ্ত বিবরণ
setCollapseButton(button) CollapseControl "কম দেখান" বোতামের জন্য প্রদর্শিত Button সেট করে।
setExpandButton(button) CollapseControl "আরো দেখান" বোতামের জন্য প্রদর্শিত Button সেট করে।
setHorizontalAlign(horizontalAlignment) CollapseControl CollapseControl এর HorizontalAlignment সেট করে।

বিস্তারিত ডকুমেন্টেশন

setCollapseButton(button)

"কম দেখান" বোতামের জন্য প্রদর্শিত Button সেট করে। ঐচ্ছিক।
পতন বোতামের সাথে একসাথে সেট করা আবশ্যক।

const collapseControl =
    CardService.newCollapseControl().setCollapseButton(collapseButton);

পরামিতি

নাম টাইপ বর্ণনা
button Button সেট করার জন্য সঙ্কুচিত বোতাম।

প্রত্যাবর্তন

CollapseControl — এই বস্তুটি, চেইন করার জন্য।


setExpandButton(button)

"আরো দেখান" বোতামের জন্য প্রদর্শিত Button সেট করে। ঐচ্ছিক।
পতন বোতামের সাথে একসাথে সেট করা আবশ্যক।

const collapseControl =
    CardService.newCollapseControl().setExpandButton(expandButton);

পরামিতি

নাম টাইপ বর্ণনা
button Button সেট করার জন্য প্রসারিত বোতাম।

প্রত্যাবর্তন

CollapseControl — এই বস্তুটি, চেইন করার জন্য।


setHorizontalAlign(horizontalAlignment)

CollapseControl এর HorizontalAlignment সেট করে। ঐচ্ছিক। *

const collapseControl = CardService.newCollapseControl().setHorizontalAlign(
    CardService.HorizontalAlignment.START,
);

পরামিতি

নাম টাইপ বর্ণনা
horizontalAlignment HorizontalAlignment ColapseControl উইজেটের অনুভূমিক প্রান্তিককরণ।

প্রত্যাবর্তন

CollapseControl — এই বস্তুটি, চেইন করার জন্য।