MCPcopy Create free account
hub / github.com/audacity/audacity / GetValue

Method GetValue

src/widgets/ASlider.cpp:2100–2110  ·  view source on GitHub ↗

Returns a localized string representing the value for the object or child.

Source from the content-addressed store, hash-verified

2098// Returns a localized string representing the value for the object
2099// or child.
2100wxAccStatus ASliderAx::GetValue(int childId, wxString* strValue)
2101{
2102 ASlider *as = wxDynamicCast( GetWindow(), ASlider );
2103
2104 if ( childId == 0 )
2105 {
2106 *strValue = as->mLWSlider->GetStringValue();
2107 return wxACC_OK;
2108 }
2109 return wxACC_NOT_SUPPORTED;
2110}
2111
2112#endif

Callers

nothing calls this directly

Calls 1

GetStringValueMethod · 0.45

Tested by

no test coverage detected