#[non_exhaustive]pub struct ParameterDropDownControl { /* private fields */ }
Expand description
A control to display a dropdown list with buttons that are used to select a single value.
Implementations§
source§impl ParameterDropDownControl
impl ParameterDropDownControl
sourcepub fn parameter_control_id(&self) -> Option<&str>
pub fn parameter_control_id(&self) -> Option<&str>
The ID of the ParameterDropDownControl
.
sourcepub fn source_parameter_name(&self) -> Option<&str>
pub fn source_parameter_name(&self) -> Option<&str>
The source parameter name of the ParameterDropDownControl
.
sourcepub fn display_options(&self) -> Option<&DropDownControlDisplayOptions>
pub fn display_options(&self) -> Option<&DropDownControlDisplayOptions>
The display options of a control.
sourcepub fn type(&self) -> Option<&SheetControlListType>
pub fn type(&self) -> Option<&SheetControlListType>
The type parameter name of the ParameterDropDownControl
.
sourcepub fn selectable_values(&self) -> Option<&ParameterSelectableValues>
pub fn selectable_values(&self) -> Option<&ParameterSelectableValues>
A list of selectable values that are used in a control.
sourcepub fn cascading_control_configuration(
&self
) -> Option<&CascadingControlConfiguration>
pub fn cascading_control_configuration(
&self
) -> Option<&CascadingControlConfiguration>
The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.
source§impl ParameterDropDownControl
impl ParameterDropDownControl
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ParameterDropDownControl
.
Trait Implementations§
source§impl Clone for ParameterDropDownControl
impl Clone for ParameterDropDownControl
source§fn clone(&self) -> ParameterDropDownControl
fn clone(&self) -> ParameterDropDownControl
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ParameterDropDownControl
impl Debug for ParameterDropDownControl
source§impl PartialEq<ParameterDropDownControl> for ParameterDropDownControl
impl PartialEq<ParameterDropDownControl> for ParameterDropDownControl
source§fn eq(&self, other: &ParameterDropDownControl) -> bool
fn eq(&self, other: &ParameterDropDownControl) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.