Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CL_GUI_SPLITTER_CONTAINER

Former Member
0 Likes
798

Is it possible to disable resize of do not display separation line between cells?

1 ACCEPTED SOLUTION
Read only

uwe_schieferstein
Active Contributor
0 Likes
595

Hello Stephan

The required method calls are:

- Separation line invisible (guess in this case it is also unmovable)

    CALL METHOD splitter->set_column_sash
      EXPORTING
        id                = 1
        type              = cl_gui_splitter_container=>TYPE_SASHVISIBLE
        value             = cl_gui_splitter_container=>false
*      IMPORTING
*        RESULT            =
       EXCEPTIONS
         CNTL_ERROR        = 1
         CNTL_SYSTEM_ERROR = 2
         others            = 3.

- Separation line visible yet unmovable

    CALL METHOD splitter->set_column_sash
      EXPORTING
        id                = 1
        type              = cl_gui_splitter_container=>TYPE_MOVABLE
        value             = cl_gui_splitter_container=>false
*      IMPORTING
*        RESULT            =
       EXCEPTIONS
         CNTL_ERROR        = 1
         CNTL_SYSTEM_ERROR = 2
         others            = 3.

Regards

Uwe

Hello Stephan

The required method calls are:

- Separation line invisible (guess in this case it is also unmovable)

    CALL METHOD splitter->set_column_sash
      EXPORTING
        id                = 1
        type              = cl_gui_splitter_container=>TYPE_SASHVISIBLE
        value             = cl_gui_splitter_container=>false
*      IMPORTING
*        RESULT            =
       EXCEPTIONS
         CNTL_ERROR        = 1
         CNTL_SYSTEM_ERROR = 2
         others            = 3.

- Separation line visible yet unmovable

    CALL METHOD splitter->set_column_sash
      EXPORTING
        id                = 1
        type              = cl_gui_splitter_container=>TYPE_MOVABLE
        value             = cl_gui_splitter_container=>false
*      IMPORTING
*        RESULT            =
       EXCEPTIONS
         CNTL_ERROR        = 1
         CNTL_SYSTEM_ERROR = 2
         others            = 3.

Regards

Uwe

1 REPLY 1
Read only

uwe_schieferstein
Active Contributor
0 Likes
596

Hello Stephan

The required method calls are:

- Separation line invisible (guess in this case it is also unmovable)

    CALL METHOD splitter->set_column_sash
      EXPORTING
        id                = 1
        type              = cl_gui_splitter_container=>TYPE_SASHVISIBLE
        value             = cl_gui_splitter_container=>false
*      IMPORTING
*        RESULT            =
       EXCEPTIONS
         CNTL_ERROR        = 1
         CNTL_SYSTEM_ERROR = 2
         others            = 3.

- Separation line visible yet unmovable

    CALL METHOD splitter->set_column_sash
      EXPORTING
        id                = 1
        type              = cl_gui_splitter_container=>TYPE_MOVABLE
        value             = cl_gui_splitter_container=>false
*      IMPORTING
*        RESULT            =
       EXCEPTIONS
         CNTL_ERROR        = 1
         CNTL_SYSTEM_ERROR = 2
         others            = 3.

Regards

Uwe