CListCtrl::SetIconSpacing

 

Sets the spacing between icons in a list view control.

Syntax

      CSize SetIconSpacing(
   int cx,
   int cy 
);
CSize SetIconSpacing(
   CSize size 
);

Parameters

  • cx
    The distance (in pixels) between icons on the x-axis.

  • cy
    The distance (in pixels) between icons on the y-axis.

  • size
    A CSize object specifying the distance (in pixels) between icons on the x- and y-axes.

Return Value

A CSize object containing the previous values for icon spacing.

Remarks

This member function implements the behavior of the Win32 macro, ListView_SetIconSpacing, as described in the Windows SDK.

Example

// Leave lots of space between icons.
m_myListCtrl.SetIconSpacing(CSize(100, 100));

Requirements

Header: afxcmn.h

See Also

CListCtrl Class
Hierarchy Chart