Page 1 of 1

[RPG] content.xxx properties for table element

Posted: Tue Oct 04, 2016 12:53 pm
by MegumiSawada
Hi,

I believe there are some properties which need to add prefix "content." to be used for table element.
Our customer would like to have a list of these properties.
Could you give the list to me if possible?
Or could you please let me know if there's any rules to add prefix "content." to properties?

Best Regards,
Megumi Sawada

Re: [RPG] content.xxx properties for table element

Posted: Tue Oct 04, 2016 1:03 pm
by tsupartono
Megumi,
Content is a property of a table column, and it refers to the template element for that column. When a new row is added to the table, a cell will be created for each column based on the template element. You would use the 'Content' property when setting properties that are common to all cells in the column (e.g. you want to set the background colour of the whole column to green, you would set the Content.BackColor property to 'Green').

So Content.XXXXX would refer to the properties of the template element. The properties available would depend on the type of the element (the template element can be any of LR element type such as Label, TextBox, etc).

You can find a more detailed explanation on the Programming Guide - Table section (look for Col%N.Content property).

http://www.longrangemobile.com/docs/lrp ... /table.htm

Re: [RPG] content.xxx properties for table element

Posted: Wed Oct 05, 2016 12:32 pm
by MegumiSawada
Thank you!