Returns a localized string representing the value for the object or child.
| 272 | // Returns a localized string representing the value for the object |
| 273 | // or child. |
| 274 | wxAccStatus HtmlWindowAx::GetValue(int WXUNUSED(childId), wxString* strValue) |
| 275 | { |
| 276 | HtmlWindow *hw = wxDynamicCast( GetWindow(), HtmlWindow ); |
| 277 | |
| 278 | *strValue = hw->ToText(); |
| 279 | |
| 280 | return wxACC_OK; |
| 281 | } |
| 282 | |
| 283 | #endif |
no outgoing calls
no test coverage detected