Join The Works program to have access to the most current content, and to be able to ask questions and get answers from Revelation staff and the Revelation community

At 13 FEB 2013 09:10:08AM Hank Huizinga wrote:

We have an edit table with DTCS_MULTILINE$ style. One of the columns has the DTCS_CHECKBOX$ style. There is a DTCS_CHECKBOXCENTER$ style to horizontally center the checkbox. Is there anyway to vertically center the checkbox.

OpenInsight 9.3.2.

Thanks,

Hank


At 13 FEB 2013 12:24PM Brad Haughn wrote:

I imagine you're doing something already with the RTI Styles something like:

column = columns<J>

posStyle = Send_Message(EditTable, "COLSTYLE", column)

origStyle = posStyle

posStyle = bitor(posStyle, DTCS_CHECKBOX$)

posStyle = bitor(posStyle, DTCS_CHECKBOXCENTER$)

Call Send_Message(EditTable, "COLSTYLE", column, posStyle)

what you need is to add a DTCS_VALIGNCENTER$ call as well such as:

posStyle = bitor(posStyle, DTCS_VALIGNCENTER$)

Brad

View this thread on the Works forum...

  • third_party_content/community/commentary/forums_works/17ac7ff3c89f552521972bbfd.txt
  • Last modified: 2023/12/30 11:57
  • by 127.0.0.1