NVelocity.Runtime.RuntimeInstance.ClearProperty C# (CSharp) Method

ClearProperty() public method

Clear the values pertaining to a particular property.
public ClearProperty ( String key ) : void
key String key of property to clear
return void
		public void ClearProperty(String key)
		{
			if (overridingProperties != null)
			{
				overridingProperties.ClearProperty(key);
			}
		}

Usage Example

示例#1
0
 /// <summary>
 /// Clear the values pertaining to a particular property.
 /// </summary>
 /// <param name="key">key of property to clear</param>
 public static void ClearProperty(String key)
 {
     ri.ClearProperty(key);
 }