SIL.FieldWorks.FdoUi.MoInflAffMsaUi.GuidForJumping C# (CSharp) Method

GuidForJumping() public method

gives the hvo of the object to use in the URL we construct when doing a jump
public GuidForJumping ( object commandObject ) : System.Guid
commandObject object
return System.Guid
		public override Guid GuidForJumping(object commandObject)
		{
			var msa = (IMoInflAffMsa) Object;
			if (msa.PartOfSpeechRA == null)
				return Guid.Empty;
				return msa.PartOfSpeechRA.Guid;
		}
	}