MFC
Expand Minimize
This topic has not yet been rated - Rate this topic

CListCtrl::Arrange

Repositions items in an icon view so that they align on a grid.

BOOL Arrange(
   UINT nCode 
);
nCode

Specifies the alignment style for the items. It can be one of the following values:

  • LVA_ALIGNLEFT   Aligns items along the left edge of the window.

  • LVA_ALIGNTOP   Aligns items along the top edge of the window.

  • LVA_DEFAULT   Aligns items according to the list view's current alignment styles (the default value).

  • LVA_SNAPTOGRID   Snaps all icons to the nearest grid position.

Nonzero if successful; otherwise zero.

The nCode parameter specifies the alignment style.


	// Align all of the list view control items along the top
	// of the window (the list view control must be in icon or
	// small icon mode).
	m_myListCtrl.Arrange(LVA_ALIGNTOP);


Header: afxcmn.h

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.