FSO.Debug.ActionQueue.ListView_SetSpacing C# (CSharp) Method

ListView_SetSpacing() public method

public ListView_SetSpacing ( ListView listview, short cx, short cy ) : void
listview System.Windows.Forms.ListView
cx short
cy short
return void
        public void ListView_SetSpacing(ListView listview, short cx, short cy)
        {
            const int LVM_FIRST = 0x1000;
            const int LVM_SETICONSPACING = LVM_FIRST + 53;

            SendMessage(listview.Handle, LVM_SETICONSPACING,
            IntPtr.Zero, (IntPtr)MakeLong(cx, cy));
        }