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); }
public void RemoveProperty(PropertyName propertyName) { Nullable <PropertyID> propertyID = m_map.GetIDFromName(propertyName); if (propertyID.HasValue) { RemoveProperty(propertyID.Value); } }