Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== EVENROWCOLOR Property ====== ==== Applies To ==== Edit table. ==== Description ==== Set and retrieve the RGB color of even numbered rows within an edit table. Note: The ROWSHADE property must be set to TRUE prior to setting the EVENROWCOLOR property. ==== Usage ==== evenRowColor = Get_Property(objectname,”EVENROWCOLOR”)existingRowColor = Set_Property(objectname,”EVENROWCOLOR”, rgbValue) ==== Remarks ==== Values passed in Set_Property(): ^Value^Description^ |rgbValue|RGB Color value.| ==== Returns ==== Values returned by Get_Property and Set_Property ^Value^Description^ |evenRowColor|The RGB color value.| |existingRowColor|The RGB color vaaue of the row, when Set_Property was run.| ==== See Also ==== [[rowshade|ROWSHADE property]], [[oddrowcolor|ODDROWCOLOR property]] ==== Example ==== <code> /* Set the ODD rows in an edit table to have a blue background and set the EVEN rows to have a yellow background */ $Insert Colors $Insert Logical rowShade = Set_Property(CtrlEntID,'ROWSHADE',true$) oddRowColor = Set_Property(CtrlEntID,'ODDROWCOLOR',blue$) evenRowColor = Set_Property(CtrlEntID,'EVENROWCOLOR',yellow$) </code> guides/programming/programmers_reference_manual/evenrowcolor.txt Last modified: 2024/06/19 20:20by 127.0.0.1