Share via


ListView_SetColumnOrderArray (Compact 2013)

3/28/2014

This macro sets the left-to-right order of columns in a list-view control.

Syntax

BOOL ListView_SetColumnOrderArray(
  HWND hwndLV, 
  int iCount, 
  int* lpiArray 
);

Parameters

  • hwndLV
    Handle to a list-view control.
  • iCount
    Number of columns in the list-view control.
  • lpiArray
    Long pointer to an array that specifies the order in which columns should be displayed, in left-to-right order. For example, if the contents of the array are {2,0,1}, the control displays column 2, column 0, and column 1 in that order.

Return Value

TRUE indicates success. FALSE indicates failure.

Remarks

Related message LVM_SETCOLUMNORDERARRAY

Requirements

Header

commctrl.h

See Also

Reference

List-View Controls Macros
LVM_SETCOLUMNORDERARRAY