PdfPageTextObjectFont Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| PdfPageTextObjectFont(PdfPageTextObjectFont) |
Creates a new |
| PdfPageTextObjectFont(IntPtr, JniHandleOwnership) | |
| PdfPageTextObjectFont(Int32, Boolean, Boolean) |
Constructs a new |
PdfPageTextObjectFont(PdfPageTextObjectFont)
Creates a new PdfPageTextObjectFont by copying attributes from the another
PdfPageTextObjectFont instance.
[Android.Runtime.Register(".ctor", "(Landroid/graphics/pdf/component/PdfPageTextObjectFont;)V", "", ApiSince=36)]
public PdfPageTextObjectFont(Android.Graphics.Pdf.Component.PdfPageTextObjectFont font);
[<Android.Runtime.Register(".ctor", "(Landroid/graphics/pdf/component/PdfPageTextObjectFont;)V", "", ApiSince=36)>]
new Android.Graphics.Pdf.Component.PdfPageTextObjectFont : Android.Graphics.Pdf.Component.PdfPageTextObjectFont -> Android.Graphics.Pdf.Component.PdfPageTextObjectFont
Parameters
The PdfPageTextObjectFont instance to copy attributes from.
- Attributes
Remarks
Creates a new PdfPageTextObjectFont by copying attributes from the another PdfPageTextObjectFont instance.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
PdfPageTextObjectFont(IntPtr, JniHandleOwnership)
protected PdfPageTextObjectFont(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Graphics.Pdf.Component.PdfPageTextObjectFont : nativeint * Android.Runtime.JniHandleOwnership -> Android.Graphics.Pdf.Component.PdfPageTextObjectFont
Parameters
- javaReference
-
IntPtr
nativeint
- transfer
- JniHandleOwnership
Applies to
PdfPageTextObjectFont(Int32, Boolean, Boolean)
Constructs a new PdfPageTextObjectFont with the specified attributes.
[Android.Runtime.Register(".ctor", "(IZZ)V", "", ApiSince=36)]
public PdfPageTextObjectFont(int fontFamily, bool isBold, bool isItalic);
[<Android.Runtime.Register(".ctor", "(IZZ)V", "", ApiSince=36)>]
new Android.Graphics.Pdf.Component.PdfPageTextObjectFont : int * bool * bool -> Android.Graphics.Pdf.Component.PdfPageTextObjectFont
Parameters
- fontFamily
- Int32
The font family, as defined by FontFamily
- isBold
- Boolean
true if the text should be bold, false otherwise
- isItalic
- Boolean
true if the text should be italic, false otherwise
- Attributes
Remarks
Constructs a new PdfPageTextObjectFont with the specified attributes.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.