ContainsTag() public method

public ContainsTag ( Tag tag ) : bool
tag Tag
return bool
コード例 #1
0
ファイル: Notebook.cs プロジェクト: MichaelAquilina/tomboy
		/// <summary>
		/// Returns true when the specified note exists in the notebook
		/// </summary>
		/// <param name="note">
		/// A <see cref="Note"/>
		/// </param>
		/// <returns>
		/// A <see cref="System.Boolean"/>
		/// </returns>
		public bool ContainsNote (Note note)
		{
			return note.ContainsTag (tag);
		}