예제 #1
0
        /// <summary>
        /// Gets the boolean value of the specified <see cref="PropertyKey"/>
        /// </summary>
        /// <param name="key">The property being requested</param>
        /// <returns>The boolean result of the property</returns>
        public bool GetBool(PropertyKey key)
        {
            bool bVal;

            _pItem.GetBool(key.MarshalledPointer, out bVal);
            return(bVal);
        }