INPUTPROPERTY
Материал из Фабиус wiki
Версия от 12:45, 27 апреля 2018; Hisava (обсуждение | вклад)
INPUTPROPERTY - это функция, описанная в файле QrAddFn.pas
Ввод значений различных типов
INPUTPROPERTY( TitleForm, DescFld [,TitlePage]... [,IsVisiblePanelBtn=True] [,IsModal=True] [,IsCenter:=True] [,IdHelp] )
DescFld - массив массивов описаний полей
Пример
local DescFld
public itime
itime := '15:00'
DescFld := { ;
{ { 'FldName', 'itime' }, { 'FldType', 'C' }, { 'CommonTitle', '1' }, ;
{ 'FldLen', 5 }, { 'Default', itime }, { 'Picture', '99:99' }, { 'FldTitl', 'Время начала' } } ;
}
if !InputProperty( 'Счетчик', DescFld )
result := nil
return
endif
result := itime
