| 467 | |
| 468 | |
| 469 | void MemberObsolete<ProgressBar>::setProgressStartPoint(Align _value) |
| 470 | { |
| 471 | if (_value == Align::Right) |
| 472 | static_cast<ProgressBar*>(this)->setFlowDirection(FlowDirection::RightToLeft); |
| 473 | else if (_value == Align::Top) |
| 474 | static_cast<ProgressBar*>(this)->setFlowDirection(FlowDirection::TopToBottom); |
| 475 | else if (_value == Align::Bottom) |
| 476 | static_cast<ProgressBar*>(this)->setFlowDirection(FlowDirection::BottomToTop); |
| 477 | else |
| 478 | static_cast<ProgressBar*>(this)->setFlowDirection(FlowDirection::LeftToRight); |
| 479 | } |
| 480 | |
| 481 | Align MemberObsolete<ProgressBar>::getProgressStartPoint() const |
| 482 | { |
nothing calls this directly
no test coverage detected