473,404 Members | 2,178 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

Labels and optimising font size



--

Hi,

my application simulates a panel of scientific instruments. Digital
readouts are provided by label components embedded in a
TableLayoutPanel with the rows and columns set to percentages of size,
so the labels expane and contract when the application is resized. So
far so good. My customer wants the maximum text size possible for easy
readability, but the labels seem to require a lot of 'white space'
around any text they are given. Seems to be about 20% of height and
possibly more of width is empty space. Is there any way to reduce that
unused area?

Second problem occurs on resize of the application - is there a way to
determine the maximum size of font that will fit in the available label
size without clipping the text?

Mike B
Jun 27 '08 #1
2 2453
First suggestion: don't put the characters "-- " in your post except for
the actual purpose of separating a signature from the rest of your post.
Many newsreaders (including my own) format the signature differently, and
also strip signatures out from quotes by default. The way you wrote you
post, the entire message appeared to be a signature and thus was difficult
to read and needed special handling just to quote it.

Please don't do that. :)

As far as the question goes:

On Sun, 15 Jun 2008 10:25:53 -0700, Mike Borrowdale
<mi**@borrowdale.me.ukwrote:
my application simulates a panel of scientific instruments. Digital
readouts are provided by label components embedded in a
TableLayoutPanel with the rows and columns set to percentages of size,
so the labels expane and contract when the application is resized. So
far so good. My customer wants the maximum text size possible for easy
readability, but the labels seem to require a lot of 'white space'
around any text they are given. Seems to be about 20% of height and
possibly more of width is empty space. Is there any way to reduce that
unused area?
It's hard to know exactly what part of the formatting you're asking about,
but you may want to look at the Margin and Padding proeprties. These
control external and internal whitespace for the control.
Second problem occurs on resize of the application - is there a way to
determine the maximum size of font that will fit in the available label
size without clipping the text?
There's not any direct way, but you can measure the text with the
Graphics.MeasureString() or TextRenderer.MeasureText() methods and compare
that to the size of the control.

Fonts don't scale in a perfectly linear fashion, so the only 100% accurate
way to do that is to iteratively check larger and larger font sizes until
you find one that doesn't fit. However, you can use a ratio-based
calculation to get pretty close using just one measurement (measure the
text at a specific size, then calculate the ratio of the resulting size to
the size of the control...then apply the ratio to the size you measured to
get the maximum size possible). If you can live with the text
occasionally not fitting perfectly, or you can provide a little extra
white space to account for the times it's a little off, that would be fine.

Pete
Jun 27 '08 #2
Hi Peter,

sorry about the formatting thing. I didn't write those characters so
I'll go and practice where it doesn't matter until I understand what
I'm doing wrong.

Back to the questions. Padding is sort-of what I'm looking for. But
even with Padding = 0 there is still quite a large space around the
displayed text in a label. Increasing the padding increases the space
but, of course, one cannot decrease Padding from 0!

I will take a look at Graphics.MeasureString() and
extRenderer.MeasureText() to see how I can use them to predict the text
size to use. Thank you for the advice.

Mike
Peter Duniho wrote:
First suggestion: don't put the characters "-- " in your post except
for the actual purpose of separating a signature from the rest of
your post. Many newsreaders (including my own) format the signature
differently, and also strip signatures out from quotes by default.
The way you wrote you post, the entire message appeared to be a
signature and thus was difficult to read and needed special handling
just to quote it.

Please don't do that. :)

As far as the question goes:

On Sun, 15 Jun 2008 10:25:53 -0700, Mike Borrowdale
<mi**@borrowdale.me.ukwrote:
my application simulates a panel of scientific instruments. Digital
readouts are provided by label components embedded in a
TableLayoutPanel with the rows and columns set to percentages of
size, so the labels expane and contract when the application is
resized. So far so good. My customer wants the maximum text size
possible for easy readability, but the labels seem to require a lot
of 'white space' around any text they are given. Seems to be about
20% of height and possibly more of width is empty space. Is there
any way to reduce that unused area?

It's hard to know exactly what part of the formatting you're asking
about, but you may want to look at the Margin and Padding
proeprties. These control external and internal whitespace for the
control.
Second problem occurs on resize of the application - is there a way
to determine the maximum size of font that will fit in the
available label size without clipping the text?

There's not any direct way, but you can measure the text with the
Graphics.MeasureString() or TextRenderer.MeasureText() methods and
compare that to the size of the control.

Fonts don't scale in a perfectly linear fashion, so the only 100%
accurate way to do that is to iteratively check larger and larger
font sizes until you find one that doesn't fit. However, you can
use a ratio-based calculation to get pretty close using just one
measurement (measure the text at a specific size, then calculate the
ratio of the resulting size to the size of the control...then apply
the ratio to the size you measured to get the maximum size
possible). If you can live with the text occasionally not fitting
perfectly, or you can provide a little extra white space to account
for the times it's a little off, that would be fine.

Pete


--

Jun 27 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Chris Coho, Jr. | last post by:
Ok, I'll explain the whole problem because there may be several ways to solve this and hopefully someone knows one. What I'm doing is creating a specialty template editor, similar to say a corel...
2
by: qumpus | last post by:
My program right now generates USPS style shipping label using System.Drawing.Graphics. It works fine except that the printer prints really slowly. I want to make my program take advantage of true...
1
by: Kyle Blaney | last post by:
When labels are vertically stacked on top of one another and have their TextAlign property set to MiddleRight, the text is not properly right-aligned. You can reproduce this problem by creating...
2
by: Woody Splawn | last post by:
When placing labels and text boxes on winforms they are coming up by default in a size that is just a little too small. How do I change this so that in the future they will come up with a bigger...
1
by: ken | last post by:
Hi, How do you change the font for the data labels on your bar graph report/chart? I have 24 series, and when I change the font of the data label for one series that does not change them all......
3
by: mikeyatsony | last post by:
hi all... what is the easy way to have users print results from a query to avery labels using a web app through internet explorer. thoughts? thanks
3
by: Allen Maki | last post by:
Hi Everybody, I am new to Famework Programming and I need your help. In Visual C++ .NET
29
by: FredBear | last post by:
I am just coming to grips with php, Dreamweaver and MySQL and I want to make a facility available for the members of the group I am creating my web site for. I want them to be able to print-out a...
5
by: Mel | last post by:
I created a header that adjusts with the size of the browser windows. How do I place labels in the header section so they also maintain their position when the window is resized? One of the labels...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.