This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Monday, June 2, 2008 4:19:29 AM(UTC)
Groups: Registered
Posts: 26
Hi,
I am using leadtools v.15 and sample prog is medicalviewer demo.....whenever i load image in the viewer -display ruler is visible along with image .I want to remove this option.I want only image in the viewer....
I have used the following method to remove the display ruler...
_medicalviewer.cell(0).displayruler=none..
it works but ruler is visible initially and then it hides....
I want to completely remove this option...How to do???Please help me out
Thanks
sakthi
#2
Posted
:
Tuesday, June 3, 2008 6:14:41 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
Before you add or insert a cell, create a MedicalViewerCell
object, load the image, disable the ruler, then display the cell.
This should be something like this:
MedicalViewerCell X = new MedicalViewerCell(image, true);
X.DisplayRulers = MedicalViewerRulers.None;
medicalViewer.Cells.Insert(index, X);
#3
Posted
:
Tuesday, June 3, 2008 8:50:25 PM(UTC)
Groups: Registered
Posts: 26
Thanks ....it works fine....
rgds
Sakthi
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.