/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The option that determines the text display size.See Also:
* AWS
* API Reference
The lexical name for the text size, proportional to its surrounding * context.
*/ inline const RelativeFontSize& GetRelative() const{ return m_relative; } /** *The lexical name for the text size, proportional to its surrounding * context.
*/ inline bool RelativeHasBeenSet() const { return m_relativeHasBeenSet; } /** *The lexical name for the text size, proportional to its surrounding * context.
*/ inline void SetRelative(const RelativeFontSize& value) { m_relativeHasBeenSet = true; m_relative = value; } /** *The lexical name for the text size, proportional to its surrounding * context.
*/ inline void SetRelative(RelativeFontSize&& value) { m_relativeHasBeenSet = true; m_relative = std::move(value); } /** *The lexical name for the text size, proportional to its surrounding * context.
*/ inline FontSize& WithRelative(const RelativeFontSize& value) { SetRelative(value); return *this;} /** *The lexical name for the text size, proportional to its surrounding * context.
*/ inline FontSize& WithRelative(RelativeFontSize&& value) { SetRelative(std::move(value)); return *this;} private: RelativeFontSize m_relative; bool m_relativeHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws