SIL.FieldWorks.Common.Controls.ObjectListPublisher.ObjectListPublisherMdc.GetFieldName C# (CSharp) Method

GetFieldName() public method

Override to give the name of the class of the 'owning' property.
public GetFieldName ( int flid ) : string
flid int
return string
			public override string GetFieldName(int flid)
			{
				if (flid == ObjectListPublisher.OwningFlid)
					return m_publisher.m_owningFieldName;
				if (flid == m_publisher.FakeFlid && flid >= ObjectListPublisher.MinFakeFlid)
					return String.Empty;

				return base.GetFieldName(flid);
			}