Home > dev > api > name > read_property 
 en fr de es nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Precedente  Successivo  Modifica  Rinomina  Undo  Search  Amministrazione  
Documentazione  
Attenzione! Questa pagina non è tradotta.  Vedi versione in inglese 
READ_PROPERTY
#define READ_PROPERTY () ...

Returns if the proprietà implementation function is called :

Esempio

/* This is the implementation of the Visible property of a control */

BEGIN_PROPERTY(CWIDGET_visible)

  if (READ_PROPERTY)
    GB.ReturnBoolean(!QWIDGET(_object)->isHidden());
  else
  {
    if (VPROP(GB_BOOLEAN))
      QWIDGET(_object)->show();
    else
      QWIDGET(_object)->hide();
  }

END_PROPERTY

Vedi anche

Property Implementation