InformationRegisterSelection.<Information register name>.GetRecordManager
Syntax:
Returned value:
Description:
Availability:
Note:
Example:
Procedure ExecuteCommandPanel(Button) Reg = InformationRegisters.RightsOfUserValues; Selection = Reg.Select(); While Selection.Next() Do Selection.GetRecordManager().Delete(); EndDo; Rows = Controls.TableBox1.Value.Count(); For Number = 0 To Rows-1 Do Row = Controls.TableBox1.Value.Get(Number); Item = Reg.CreateRecordManager(); Item.RightsSet = Row.RightsSet; Item.Right = Row.Right; Item.Value = Row.Value; Item.Write(); EndDo; EndProcedure |