SIL.FieldWorks.XWorks.LexText.FlexStylesXmlAccessor.StyleIsInUse C# (CSharp) Method

StyleIsInUse() protected method

Determines whether the given style is (possibly) in use.
This override is needed because previously hotlinks in FLEx were not have made good use of the InUse property of styles.
protected StyleIsInUse ( IStStyle style ) : bool
style IStStyle The style.
return bool
		protected override bool StyleIsInUse(IStStyle style)
		{
			return (style.Name == "External Link" || base.StyleIsInUse(style));
		}
	}