BBGamelib.CCTMXObject.getProperty C# (CSharp) Method

getProperty() public method

public getProperty ( string key ) : string
key string
return string
		public string getProperty(string key){
			if (properties == null)
				return null;
			string value = null;
			if (properties.TryGetValue (key, out value))
				return value;
			else
				return null;
		}
	}
CCTMXObject