SapGuiGridSetColumnWidth Function

Action

Sets the column width in a SapGui grid control to a specified value.

Include file

SapGui.bdh

Syntax

SapGuiGridSetColumnWidth( in sControl : string allownull, 
                          in sCol     : string, 
                          in nWidth   : number,
                          in sTimer   : string optional ) : boolean;
Parameter Description
sControlId The grid control's unique id.
sCol The id of the column.
nWidth The new width of the column.
sTimer Timer name used for measurements.

Return value

  • true if successful
  • false otherwise

Example

transaction TMain
  var
    bCheck : boolean;
    sConnID : string;
  begin

    // Connecting to SAP
    sConnID := SapGuiOpenConnection( " /SAP_CODEPAGE=1100 /FULLMENU 10.5.2.132 0 /3");
    SapGuiSetActiveConnection(sConnID);
    SapGuiSetActiveSession("ses[0]");

    // SAP
    SapGuiSetActiveWindow("wnd[0]", "SAP", SAPGUI_MATCH_ExactNoCase);
    SapGuiWindowAction(SAPGUI_WND_MAXIMIZE);
    SapGuiLogon("ddic", "*******", "000", "");
    bCheck := SapGuiGridSetColumnWidth("/usr/tab/grid", "OOBOO", 234 );
  end TMain;