Hi

Investigating sc/sdi/cellsh.sdi

I see the following code for the commands GoDown, GoDownSel, GoUp, GoUpSel
(+ left and right movement and selection)

//cursor down
SfxVoidItem GoDown SID_CURSORDOWN
    (
        SfxInt16Item By FN_PARAM_1,
        SfxBoolItem      Sel FN_PARAM_2
    )
    [
        ExecMethod = ExecuteCursor ;
        StateMethod = GetStateCursor ;
        Cachable ;
    ]

    SfxVoidItem GoDownSel SID_CURSORDOWN_SEL
    (
        SfxInt16Item By FN_PARAM_1
    )
    [
        Export = FALSE ;
        ExecMethod = ExecuteCursorSel ;
        StateMethod = GetStateCursor ;
        Cachable ;
    ]

// cursor up

    SfxVoidItem GoUp SID_CURSORUP
    (
        SfxInt16Item By FN_PARAM_1,
        SfxBoolItem      Sel FN_PARAM_2
    )
    [
        ExecMethod = ExecuteCursor ;
        StateMethod = GetStateCursor ;
        Cachable ;
    ]
    SID_CURSORUP_SEL    [ ExecMethod = ExecuteCursorSel; StateMethod =
GetStateCursor; ]

So it looks like GoDownSel has an argument "By", which seems to be "select
FN_PARAM_1 cells down", but GoUpSel (GoRightSel and GoLeftSel) does not have
this parameter.

Which one is the correct?

Thanks
-- 
Olivier Hallot
Founder and Steering Commitee Member
The Document Foundation
_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to