Exemple #1
0
        /// <summary>
        /// Gets the int value from the specified <see cref="PropertyKey"/>
        /// </summary>
        /// <param name="key">The property being requested</param>
        /// <returns>The integer value of the specified property</returns>
        public int GetInt32(PropertyKey key)
        {
            int iVal;

            _pItem.GetInt32(key.MarshalledPointer, out iVal);
            return(iVal);
        }