pub struct Builder { /* private fields */ }
Expand description
A builder for DefaultNewSheetConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn interactive_layout_configuration(
self,
input: DefaultInteractiveLayoutConfiguration
) -> Self
pub fn interactive_layout_configuration(
self,
input: DefaultInteractiveLayoutConfiguration
) -> Self
The options that determine the default settings for interactive layout configuration.
sourcepub fn set_interactive_layout_configuration(
self,
input: Option<DefaultInteractiveLayoutConfiguration>
) -> Self
pub fn set_interactive_layout_configuration(
self,
input: Option<DefaultInteractiveLayoutConfiguration>
) -> Self
The options that determine the default settings for interactive layout configuration.
sourcepub fn paginated_layout_configuration(
self,
input: DefaultPaginatedLayoutConfiguration
) -> Self
pub fn paginated_layout_configuration(
self,
input: DefaultPaginatedLayoutConfiguration
) -> Self
The options that determine the default settings for a paginated layout configuration.
sourcepub fn set_paginated_layout_configuration(
self,
input: Option<DefaultPaginatedLayoutConfiguration>
) -> Self
pub fn set_paginated_layout_configuration(
self,
input: Option<DefaultPaginatedLayoutConfiguration>
) -> Self
The options that determine the default settings for a paginated layout configuration.
sourcepub fn sheet_content_type(self, input: SheetContentType) -> Self
pub fn sheet_content_type(self, input: SheetContentType) -> Self
The option that determines the sheet content type.
sourcepub fn set_sheet_content_type(self, input: Option<SheetContentType>) -> Self
pub fn set_sheet_content_type(self, input: Option<SheetContentType>) -> Self
The option that determines the sheet content type.
sourcepub fn build(self) -> DefaultNewSheetConfiguration
pub fn build(self) -> DefaultNewSheetConfiguration
Consumes the builder and constructs a DefaultNewSheetConfiguration
.