Jump to content

How to change height and width of a Stringrid


asapltda

Recommended Posts

Hi

 

I want to change the height and width of the cells of a string grid , height = 90 width = 90 , in design mode seen in that size, but in execution only the width is changed, as I can do ?

 

Use delphi XE2 , Windows 10 home

 

 

I want to change the height and width of the cells of a string grid , height = 90 width = 90 , in design mode seen in that size, but in execution only the width is changed, as I can do ? Use delphi XE2 , Windows 10 home

Link to comment
Share on other sites

  • 2 weeks later...

Hi,

 

That instruction , exchange all existing StringGrid in the application ?

 

yes, height will be changed for all

 

 

If only what I require this specific size , in a specific way , as it should ?

 

Do you mean for only one ?!

Link to comment
Share on other sites

Hi,

 

Then try this:

 

1. UniServerModule->CustomCSS...

.my-stringgrid .x-grid-cell {
    height: 90px;
}

2. UniStringGrid1->ClientEvents->UniEvents-> beforeInit fn:

function beforeInit(sender, config)
{
    config.cls = "my-stringgrid";
}

Best regards.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...