Beispiel #1
0
        public Nullable <bool> GetBooleanProperty(int rowIndex, PropertyName propertyName)
        {
            Nullable <PropertyID> propertyID = m_map.GetIDFromName(propertyName);

            if (propertyID.HasValue)
            {
                return(GetBooleanProperty(rowIndex, propertyID.Value));
            }
            return(null);
        }
Beispiel #2
0
        public void RemoveProperty(PropertyName propertyName)
        {
            Nullable <PropertyID> propertyID = m_map.GetIDFromName(propertyName);

            if (propertyID.HasValue)
            {
                RemoveProperty(propertyID.Value);
            }
        }