-----------------------------------------------------------------------------
| 1440 | |
| 1441 | //-----------------------------------------------------------------------------** |
| 1442 | void vtkAxisActor::SetTitleAlignLocation(int location) |
| 1443 | { |
| 1444 | if (location != this->TitleAlignLocation) |
| 1445 | { |
| 1446 | switch (location) |
| 1447 | { |
| 1448 | case VTK_ALIGN_TOP: |
| 1449 | case VTK_ALIGN_BOTTOM: |
| 1450 | case VTK_ALIGN_POINT1: |
| 1451 | case VTK_ALIGN_POINT2: |
| 1452 | { |
| 1453 | this->TitleAlignLocation = location; |
| 1454 | this->TitleTextTime.Modified(); |
| 1455 | this->Modified(); |
| 1456 | break; |
| 1457 | } |
| 1458 | default: |
| 1459 | { |
| 1460 | break; |
| 1461 | } |
| 1462 | } |
| 1463 | } |
| 1464 | } |
| 1465 | |
| 1466 | //-----------------------------------------------------------------------------** |
| 1467 | void vtkAxisActor::SetExponent(const std::string& exponent) |