AdsApp.AdViewSpace
Stay organized with collections
Save and categorize content based on your preferences.
Starting point for viewing type-specific ad information.
Typical usage:
if (ad.isType().expandedTextAd()) {
var expandedTextAd = ad.asType().expandedTextAd();
var headlinePart1 = expandedTextAd.getHeadlinePart1();
}
Methods:
expandedTextAd()
Returns the ad as an
ExpandedTextAd. Calling this on an ad
of a different type will result in an error.
Return values:
imageAd()
Returns the ad as an
ImageAd. Calling
this on an ad of a different type will result in an error.
Return values:
responsiveDisplayAd()
Returns the ad as a
ResponsiveDisplayAd. Calling
this on an ad of a different type will result in an error.
Return values:
responsiveSearchAd()
Returns the ad as a
ResponsiveSearchAd. Calling this
on an ad of a different type will result in an error.
Return values:
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-12-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-12-18 UTC."],[[["Serves as an entry point for accessing ad type-specific information."],["Provides methods like `expandedTextAd()`, `imageAd()`, `responsiveDisplayAd()`, and `responsiveSearchAd()` to retrieve ad details based on their type."],["Each method returns the ad as a specific object type (e.g., ExpandedTextAd, ImageAd) allowing access to its properties."],["Using a method on an incompatible ad type will result in an error, highlighting the importance of type checking."]]],[]]