Interface FluentHasSize<S extends FluentHasSize<S>>

All Superinterfaces:
com.vaadin.flow.component.HasElement, com.vaadin.flow.component.HasSize, Serializable
All Known Subinterfaces:
FluentHtmlContainer<S>, FluentVaadinTextField<S,F,T>
All Known Implementing Classes:
ConfirmationDialog, ConfirmButton, DefaultButton, DeleteButton, EnumSelect, LocaleSelect, PagingGrid, TreeTable, UploadFileHandler, VAnchor, VArticle, VAside, VBigDecimalField, VButton, VCheckBox, VCheckboxGroup, VComboBox, VCustomField, VDatePicker, VDateTimePicker, VDescriptionList, VDialog, VDiv, VEmailField, VEmphasis, VFlexLayout, VFooter, VFormLayout, VGrid, VH1, VH2, VH3, VH4, VH5, VH6, VHeader, VHorizontalLayout, VHr, VImage, VIntegerField, VLabel, VListBox, VListItem, VMain, VMenuBar, VMultiSelectListBox, VNativeButton, VNav, VNumberField, VOrderedList, VParagaph, VPasswordField, VProgressBar, VScroller, VSection, VSelect, VSpan, VSplitLayout, VTextArea, VTextField, VTimePicker, VUnorderedList, VUpload, VVerticalLayout

public interface FluentHasSize<S extends FluentHasSize<S>> extends com.vaadin.flow.component.HasSize
  • Method Details

    • withHeight

      default S withHeight(String height)
    • withSizeFull

      default S withSizeFull()
    • withSizeUndefined

      default S withSizeUndefined()
    • withWidth

      default S withWidth(String width)
    • withFullWidth

      default S withFullWidth()
      Sets the width to 100%.
      Returns:
      this (for method chaining)
    • withFullHeight

      default S withFullHeight()
      Sets the height to 100%.
      Returns:
      this (for method chaining)
    • withSize

      default S withSize(String width, String height)
    • withMinWidth

      default S withMinWidth(String minWidth)
    • withMaxWidth

      default S withMaxWidth(String maxWidth)
    • withMinHeight

      default S withMinHeight(String minHeight)
    • withMaxHeight

      default S withMaxHeight(String maxHeight)
    • withMinSize

      default S withMinSize(String width, String height)
    • withMaxSize

      default S withMaxSize(String width, String height)