------------------------------------------------------------------------------
| 518 | |
| 519 | //------------------------------------------------------------------------------ |
| 520 | const char* vtkLegendBoxActor::GetEntryString(int i) |
| 521 | { |
| 522 | if (i < 0 || i >= this->NumberOfEntries) |
| 523 | { |
| 524 | return nullptr; |
| 525 | } |
| 526 | else |
| 527 | { |
| 528 | return this->TextMapper[i]->GetInput(); |
| 529 | } |
| 530 | } |
| 531 | |
| 532 | //------------------------------------------------------------------------------ |
| 533 | double* vtkLegendBoxActor::GetEntryColor(int i) |
no test coverage detected