|
@@ -116,7 +116,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
if (IsLoadedData)
|
|
|
{
|
|
|
cPDFAnnotation.SetFieldName((sender as TextBox).Text);
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -126,7 +126,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
if (IsLoadedData)
|
|
|
{
|
|
|
cPDFAnnotation.SetFlags(ParamConverter.GetFormFlags((ParamConverter.FormField)(sender as ComboBox).SelectedIndex, cPDFAnnotation));
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -140,7 +140,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
Color[1] = ((SolidColorBrush)BorderColorPickerControl.Brush).Color.G;
|
|
|
Color[2] = ((SolidColorBrush)BorderColorPickerControl.Brush).Color.B;
|
|
|
cPDFAnnotation.SetWidgetBorderRGBColor(Color);
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -154,7 +154,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
Color[1] = ((SolidColorBrush)BackgroundColorPickerControl.Brush).Color.G;
|
|
|
Color[2] = ((SolidColorBrush)BackgroundColorPickerControl.Brush).Color.B;
|
|
|
cPDFAnnotation.SetWidgetBgRGBColor(Color);
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -170,7 +170,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
cTextAttribute.FontColor = Color;
|
|
|
cPDFAnnotation.SetTextAttribute(cTextAttribute);
|
|
|
cPDFAnnotation.UpdateFormAp();
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -185,7 +185,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
cTextAttribute.FontName = ObtainFontName(fontType, isBold, isItalic);
|
|
|
cPDFAnnotation.SetTextAttribute(cTextAttribute);
|
|
|
cPDFAnnotation.UpdateFormAp();
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -219,7 +219,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
cTextAttribute.FontName = ObtainFontName(fontType, isBold, isItalic);
|
|
|
cPDFAnnotation.SetTextAttribute(cTextAttribute);
|
|
|
cPDFAnnotation.UpdateFormAp();
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -231,7 +231,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
cTextAttribute.FontSize = Convert.ToSingle((sender as ComboBox).SelectedItem);
|
|
|
cPDFAnnotation.SetTextAttribute(cTextAttribute);
|
|
|
cPDFAnnotation.UpdateFormAp();
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -240,7 +240,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
if (IsLoadedData)
|
|
|
{
|
|
|
cPDFAnnotation.SetJustification((C_TEXT_ALIGNMENT)(sender as ComboBox).SelectedIndex);
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -249,7 +249,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
if (IsLoadedData)
|
|
|
{
|
|
|
cPDFAnnotation.SetText((sender as TextBox).Text);
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -258,7 +258,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
if (IsLoadedData)
|
|
|
{
|
|
|
cPDFAnnotation.SetMultiLine(true);
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -267,7 +267,7 @@ namespace Compdfkit_Tools.PDFControl
|
|
|
if (IsLoadedData)
|
|
|
{
|
|
|
cPDFAnnotation.SetMultiLine(false);
|
|
|
- pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDataAnnotFrame();
|
|
|
+ pdfViewerControl.PDFViewTool.GetCPDFViewer().UpDateAnnotFrame();
|
|
|
}
|
|
|
}
|
|
|
|