|
virtual INT32 MgReader::GetInt32 |
( |
CREFSTRING |
propertyName |
) |
[pure virtual] |
Gets the 32 bit integer value of the specified property.
- Remarks:
- No conversion is performed. Therefore, the property must be a of type MgPropertyType::Int32 or an MgInvalidPropertyTypeException is thrown.
.NET Syntax
virtual int GetInt32(string propertyName);
|
Java Syntax
virtual int GetInt32(String propertyName);
|
PHP Syntax
virtual int GetInt32(string propertyName);
|
- Parameters:
-
| propertyName | (String/string) The property name. |
- Returns:
- Returns the integer 32 bits value.
- Exceptions:
-
| MgInvalidPropertyTypeException. | |
|