Drawing dotted lines | CodeGuru

Drawing dotted lines

3 steps to show how to draw vertical and horizontal dotted lines(1 pixel on 2) using GDI calls. This code works under all Win32 platforms. Step 1 (initialization) A patterned brush is created during program (or view) initialization. This brush will be used to draw the dotted lines : { … // Create a dotted […]

Written By
CodeGuru Staff
CodeGuru Staff
Dec 6, 1998
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

3 steps to show how to draw vertical and horizontal
dotted lines(1 pixel on 2) using GDI calls. This code works under all
Win32 platforms.

Step 1 (initialization)

A patterned brush is created during program (or view) initialization.
This brush will be used to draw the dotted lines :

{
	...

	// Create a dotted monochrome bitmap
	WORD b[8] = { 0xAAAA, 0x5555, 0xAAAA, 0x5555, 0xAAAA, 0x5555, 0xAAAA,
	0x5555 };
	BITMAP bm;
	bm.bmType = 0;
	bm.bmWidth = 16;
	bm.bmHeight = 8;
	bm.bmWidthBytes = 2;
	bm.bmPlanes = 1;
	bm.bmBitsPixel = 1;
	bm.bmBits = b;
	HBITMAP hbm = CreateBitmapIndirect(&bm);

	// Create the brush from the bitmap bits
	HBRUSH hPatternBrush = CreatePatternBrush(hbm);

	// Delete the useless bitmap
	DeleteObject(hbm);

	...
}

Step 2 (drawing)

Dotted lines are drawn using PatBlt() :

{
	...

	// Select the patterned brush into the DC
	HBRUSH oldBrush = (HBRUSH)SelectObject(hDC, hPatternBrush);

	// Draw an horizontal line
	PatBlt(hDC, 10, 10, 300, 1, PATCOPY);

	// Invert a vertical line 2 pixels wide
	PatBlt(hDC, 10, 10, 2, 300, PATINVERT);

	// Clean up
	SelectObject(hDC, oldBrush);

	...
}

If drawing occurs in a “scrollable view”, don’t forget to align the
brush origin
into the DC BEFORE to select the brush :

{
	...

	// We are in a CScrollView, the patterned brush must be aligned
	UnrealizeObject(hPatternBrush);
	CPoint sp = GetDeviceScrollPosition();
	SetBrushOrgEx(hDC, -sp.x & 7, -sp.y & 7, NULL);

	// Select the patterned brush into the DC
	HBRUSH oldBrush = (HBRUSH)SelectObject(hDC, hPatternBrush);

	...
}
Advertisement

Step 3 (destruction)

When the patterned brush is useless, it must be destroyed :

{
	...

	// Delete the patterned brush
	DeleteObject(hPatternBrush);

	...
}

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.