SIL.FieldWorks.Common.Framework.DetailControls.GhostStringSlice.GhostMdc.GetFieldType C# (CSharp) Méthode

GetFieldType() public méthode

The virtual field store a TsString, so the fake flid returns a type of String.
public GetFieldType ( int luFlid ) : int
luFlid int
Résultat int
			public override int GetFieldType(int luFlid)
			{
				return luFlid == GhostStringSlice.kflidFake ?
					(int)CellarPropertyType.String : base.GetFieldType(luFlid);
			}
		}