- Use conditions
- Adding an empty row
- Characteristics of the row
- Sort
<Looper>.InsertLine (Function) In french: <Zone répétée>.InsèreLigne Inserts a row into a Looper control.
// Add values into the Looper control at position 12 LOOP_Looper1.InsertLine(12, LastName, FirstName, PhoneNum, FaxNum)
// Insert searched information into the database i is int = 1 LOOP_LOOPER1.DeleteAll() HReadSeek(Product, ProdName, "Window") WHILE HOut() = False LOOP_LOOPER1.InsertLine(i, Product.ProdName, Product.Code) HReadNext(Product, ProdName) i ++ END
Syntax
Inserting a row in a Looper control with attributes Hide the details
<Looper control>.InsertLine([<Index> [, <Value 1> [, <Value N>]]])
<Looper control>: Control name Name of the Looper control to be used. <Index>: Optional integer Index of the row from which the new row will be inserted.
| | Index not specified | The row will be inserted before the current row. If no row is selected, the row will be inserted at the last position in the Looper control. | Index greater than the number of rows in the control | The row will be inserted at the last position in the Looper control. In this case, <Looper>.InsertLine is equivalent to <Looper>.AddLine. | Index equal to 0 | The row will be inserted at the first position in the Looper control. | Index equal to -1 | The row will be inserted before the current row. If no row is selected, the row will be inserted at the last position in the Looper control. |
<Value 1>: Type of associated attribute (optional) Value of 1st attribute for the row to insert into the specified Looper control. The different values must be specified in the order of the attributes (Looper control description window). To specify no value for one of the attributes, use an empty string ("") or 0 (depending on the type of attribute). If none of these parameters is specified, an empty row will be inserted into the Looper control. <Value N>: Type of associated attribute (optional) Value of N attribute for the row to insert into the specified Looper control. The different values must be specified in the order of the attributes (Looper control description window). To specify no value for one of the attributes, use an empty string ("") or 0 (depending on the type of attribute). If none of these parameters is specified, an empty row will be inserted into the Looper control. Remarks Use conditions <Looper>.InsertLine can be used on: - a Looper control based on a data file,
- a Looper control populated programmatically.
Adding an empty row Once an empty row was added, each attribute or each control must be initialized one by one. For example: - For a Looper control with attributes:
// Add an empty row LOOP_LOOPER1.InsertLine(14) // Then, initialize the attributes AttributeLastName[14] = "Hobbes" AttributeFirstName[14] = "Samantha" AttributeFirstNameColor[14] = LightRed AttributeAddressVisible[14] = False
- For a Looper control without attributes:
// Add an empty row LOOP_Looper1.InsertLine(14) // Then, initialize the controls LOOP_Looper1[14].LastNameControl = "Hobbes" LOOP_Looper1[14].FirstNameControl = "Samantha" LOOP_Looper1[14].ControlFirstName.BackgroundColor = LightRed LOOP_Looper1[14].ControlAddress.Visible = False
Characteristics of the row If a value corresponds to the result of a calculation, the numeric expression must be enclosed in brackets. For example:
LOOP_CalculationZone.InsertLine(10, (53+29), (83-21))
Sort <Looper>.InsertLine ignores the sort.
This page is also available for…
|
|
|
|