public void ApplyPatch(TextPatch patch)
 {
     Enabled       = Enabled.ApplyPatch(patch.Enabled);
     Contents      = Contents.ApplyPatch(patch.Contents);
     PixelsPerLine = PixelsPerLine.ApplyPatch(patch.PixelsPerLine);
     Height        = Height.ApplyPatch(patch.Height);
     Anchor        = Anchor.ApplyPatch(patch.Anchor);
     Justify       = Justify.ApplyPatch(patch.Justify);
     Font          = Font.ApplyPatch(patch.Font);
     Color         = Color.ApplyPatch(patch.Color);
 }