INPUTPROPERTY — различия между версиями

Материал из Фабиус wiki
Перейти к: навигация, поиск
м
м
Строка 6: Строка 6:
  
 
DescFld - массив массивов описаний полей
 
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
  
 
= Использование =
 
= Использование =

Версия 09:27, 21 ноября 2016

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

Использование

INPUTDATEANDTIME

Смотрите также

Функции Delphi

Полезные функции