class PropertyCollection

Classe per recuperare o impostare un valore di proprietà da una raccolta di proprietà.

Membri

~Propertycollection

Sintassi: public inline ~PropertyCollection ( );

Distruttore.

SetProperty

Sintassi: public inline void SetProperty ( PropertyId propertyID , const std::string & value );

Impostare il valore di una proprietà.

Parametri

  • propertyID ID della proprietà. Vedere PropertyId

  • value valore da impostare

SetProperty

Sintassi: public inline void SetProperty ( const std::string & propertyName , const std::string & value );

Impostare il valore di una proprietà.

Parametri

  • propertyName Nome della proprietà.

  • value valore da impostare

Getproperty

Sintassi: public inline std::string GetProperty ( PropertyId propertyID , const std::string & defaultValue ) const;

Restituisce il valore di una proprietà. Se il valore della proprietà non è definito, viene restituito il valore predefinito specificato.

Parametri

  • propertyID ID della proprietà. Vedere PropertyId

  • defaultValue Valore predefinito restituito se non viene definito alcun valore per la proprietà (stringa vuota per impostazione predefinita).

Restituisce

valore della proprietà.

Getproperty

Sintassi: public inline std::string GetProperty ( const std::string & propertyName , const std::string & defaultValue ) const;

Restituisce il valore di una proprietà. Se il valore della proprietà non è definito, viene restituito il valore predefinito specificato.

Parametri

  • propertyName Nome della proprietà.

  • defaultValue Valore predefinito restituito se non viene definito alcun valore per la proprietà (stringa vuota per impostazione predefinita).

Restituisce

valore della proprietà.