Hi,
I created a AIS_Point and show its name using AIS_TextLabel, but they're too close. I want to move the label a little bit to the upper right,what should I do?
The simplest way is putting a couple of spaces into text label itself to move it right; it should be also possible using SetLocalTransformation() to specify offset. For changing text alignment (where label is directed from specified point) - consider sing AIS_TextLabel::SetVJustification()/::SetHJustification().
Tue, 11/02/2021 - 23:35
The simplest way is putting a couple of spaces into text label itself to move it right; it should be also possible using SetLocalTransformation() to specify offset. For changing text alignment (where label is directed from specified point) - consider sing AIS_TextLabel::SetVJustification()/::SetHJustification().
Wed, 11/03/2021 - 10:03
thanks