Xbasic

Field_Rules.Change_End Function

Syntax

.Change_End [ Commit_Flag as L ] )

Arguments

Commit_Flag

Optional. Default = .T. (TRUE)

Description

The .Change_End() method indicates that you are finished changing the value of one or more field rules and want to save the changes. Use <TBL>.RULES_GET() to create the pointer.

Example

dim tbl as P
dim fr as P
tbl = table.open("invoice_header")
fr = tbl.rules_get()
fr.change_begin()
fr.date.skip = "F"
fr.change_end(.t.)
tbl.close()

Limitations

Desktop applications only.

See Also