public TextAnchor Build() { TextAnchor result = new TextAnchor(); result.AnchorText = anchorText; result.Occurrence = occurrence; result.Character = character; result.Position = position; result.XOffset = xOffset; result.YOffset = yOffset; result.Width = width; result.Height = height; return result; }
public TextAnchor Build() { Support.LogMethodEntry(); TextAnchor result = new TextAnchor(); result.AnchorText = anchorText; result.Occurrence = occurrence; result.Character = character; result.Position = position; result.XOffset = xOffset; result.YOffset = yOffset; result.Width = width; result.Height = height; Support.LogMethodExit(result); return result; }