Returns a localized string representing the value for the object or child.
| 2098 | // Returns a localized string representing the value for the object |
| 2099 | // or child. |
| 2100 | wxAccStatus 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 |
nothing calls this directly
no test coverage detected