25/27th April 2018 in Denver.
MBS Xojo Conference
6/7th September 2018 in Munich, Germany.
Platforms to show: All Mac Windows Linux Cross-Platform
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 15.3 | Yes | Yes | Yes | Yes | No |
Notes:
This type of annotation is typically used to mark a position on a page where a user should add or edit text.
If the coordinate system is bottom-up the point PosX, PosY defines the lower left corner of the bounding rectangle. If the coordinate system is top-down it defines the upper left corner.
This annotation type has an associated PopUp annotation that displays the string Content in a floating window. The initial window state of the associated PopUp annotation is closed by default but the state can be changed with SetAnnotOpenState if necessary.
If the function succeeds the return value is the annotation handle, a value greater or equal zero. If the function fails the return value is a negative error code.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes:
The Name parameter is converted to unicode.
Also check the dynapdf manual on the pdfChangeAnnotNameW function.
See also ChangeAnnotName function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.3 | Yes | Yes | Yes | Yes | No |
Notes:
The Name parameter is converted to ANSI.
Also check the dynapdf manual on the pdfChangeAnnotNameA function.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfChangeAnnotPos function.
See also ChangeAnnotPos function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes:
The text parameter is converted to unicode.
Also check the dynapdf manual on the pdfChangeBookmarkW function.
See also ChangeBookmark function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.3 | Yes | Yes | Yes | Yes | No |
Notes:
The text parameter is converted to ANSI.
Also check the dynapdf manual on the pdfChangeBookmarkA function.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfChangeFont function.
See also ChangeFont function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfChangeFontSize function.
See also ChangeFontSize function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfChangeFontStyle function.
See also ChangeFontStyle function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfChangeFontStyleEx function.
See also ChangeFontStyleEx function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes:
The text parameter is converted to unicode.
Also check the dynapdf manual on the pdfChangeJavaScriptW function.
See also ChangeJavaScript function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes:
The text parameter is converted to unicode.
Also check the dynapdf manual on the pdfChangeJavaScriptActionW function.
See also ChangeJavaScriptAction function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.3 | Yes | Yes | Yes | Yes | No |
Notes:
The text parameter is converted to ANSI.
Also check the dynapdf manual on the pdfChangeJavaScriptActionA function.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.3 | Yes | Yes | Yes | Yes | No |
Notes:
The text parameter is converted to ANSI.
Also check the dynapdf manual on the pdfChangeJavaScriptA function.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes:
The text parameter is converted to unicode.
Also check the dynapdf manual on the pdfChangeJavaScriptNameW function.
See also ChangeJavaScriptName function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.3 | Yes | Yes | Yes | Yes | No |
Notes:
The text parameter is converted to ANSI.
Also check the dynapdf manual on the pdfChangeJavaScriptNameA function.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfChangeLinkAnnot function.
See also ChangeLinkAnnot function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 13.4 | Yes | Yes | Yes | Yes | No |
Example:
// your instance
dim pdf as DynaPDFMBS
// Create new separation color
dim ColorSpaceHandle as Integer = pdf.CreateSeparationCS("test",DynapdfMBS.kcsDeviceCMYK,-1,DynapdfMBS.CMYK(0,0,0,100))
call pdf.SetExtColorSpace(ColorSpaceHandle)
// draw something
call pdf.SetfillColor(255) // 100% of the separation color test
call pdf.DrawCircle(193,389,66, pdf.kfmFill)
// change it to red
call pdf.ChangeSeparationColor(ColorSpaceHandle, 255, DynapdfMBS.kcsDeviceRGB, -1)
The new color value must be defined in the alternate color space. The alternate color space can be any device or ICC based color space including Lab. If a non-device color space is used, the parameter AltHandle must be set to the color space handle of the alternate color space.
Returns true on success or false on failure.
See also ChangeSeparationColor function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
The function checks whether user defined data fields in embedded files are consistently defined with
collection fields.
Notes: Also check the dynapdf manual on the pdfCheckCollection function.
See also CheckCollection function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfCheckConformance function.
See also CheckConformance function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfCheckFieldNames function.
See also CheckFieldNames function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 13.5 | Yes | Yes | Yes | Yes | No |
Notes:
If the parameters Width and Height are equal the function draws a circle, an ellipse otherwise. If the annotation should be drawn without a border, set the parameter LineWidth zo zero or StrokeColor to the special constant kNO_COLOR.
If the interior should be transparent set FillColor to the special constant kNO_COLOR.
Although the line width can be set to any positive floating point value, Adobe's Acrobat or Reader restrict the line width to 0 through 12 units. The line width should be restricted in the same way to avoid issues in Adobe viewer products.
If the function succeeds the return value is the annotation handle, a value greater or equal zero. If the function fails, the return value is a negative error code.
See also CircleAnnot function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 13.5 | Yes | Yes | Yes | Yes | No |
Notes:
If the parameters Width and Height are equal the function draws a circle, an ellipse otherwise. If the annotation should be drawn without a border, set the parameter LineWidth zo zero or StrokeColor to the special constant kNO_COLOR.
If the interior should be transparent set FillColor to the special constant kNO_COLOR.
Although the line width can be set to any positive floating point value, Adobe's Acrobat or Reader restrict the line width to 0 through 12 units. The line width should be restricted in the same way to avoid issues in Adobe viewer products.
If the function succeeds the return value is the annotation handle, a value greater or equal zero. If the function fails, the return value is a negative error code.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfClearAutoTemplates function.
See also ClearAutoTemplates function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 11.2 | Yes | Yes | Yes | Yes | No |
See also ClearErrorLog function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfClearHostFonts function.
See also ClearHostFonts function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfClipPath function.
See also ClipPath function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfCloseAndSignFile function.
See also CloseAndSignFile function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 8.0 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfCloseAndSignFileEx function.
See also CloseAndSignFileEx function in DynaPDF manual.
Type | Topic | Plugin | Version | macOS | Windows | Linux | Console & Web | iOS |
method | DynaPDF | MBS DynaPDF Plugin | 10.2 | Yes | Yes | Yes | Yes | No |
Notes: Also check the dynapdf manual on the pdfCloseAndSignFileExt function.
See also CloseAndSignFileExt function in DynaPDF manual.
The items on this page are in the following plugins: MBS DynaPDF Plugin.
Links
MBS Xojo Plugins