SIL.FieldWorks.Common.Controls.XMLViewsDataCache.get_ObjectProp C# (CSharp) Method

get_ObjectProp() public method

Override to work with fake flids.
public get_ObjectProp ( int hvo, int tag ) : int
hvo int
tag int
return int
		public override int get_ObjectProp(int hvo, int tag)
		{
			switch (tag)
			{
				default:
					return base.get_ObjectProp(hvo, tag);
				case ktagTagMe:
					return hvo;
			}
		}