Group
Show / Hide Table of Contents

Class ResumeLogo

A company logo in a formatted resume

Inheritance
System.Object
ResumeLogo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models.API.Formatter
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class ResumeLogo

Constructors

| Improve this Doc View Source

ResumeLogo()

Create a ResumeLogo. If you use this constructor you must set Logo

Declaration
public ResumeLogo()
| Improve this Doc View Source

ResumeLogo(Byte[], Int32, Int32)

Create a logo from a langword_csharp_byte[]

Declaration
public ResumeLogo(byte[] bytes, int width, int height)
Parameters
Type Name Description
System.Byte[] bytes

The image file byte array

System.Int32 width

The width of the logo in points (1/72 of an inch)

System.Int32 height

The height of the logo in points (1/72 of an inch)

| Improve this Doc View Source

ResumeLogo(String, Int32, Int32)

Create a logo from a file on disk.

Declaration
public ResumeLogo(string filePath, int width, int height)
Parameters
Type Name Description
System.String filePath

The path to the image file (PNG, JPG, SVG)

System.Int32 width

The width of the logo in points (1/72 of an inch)

System.Int32 height

The height of the logo in points (1/72 of an inch)

Properties

| Improve this Doc View Source

Height

The height of the logo in points (1/72 of an inch)

Declaration
public int Height { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Logo

The logo file langword_csharp_byte[] as a Base64-encoded string

Declaration
public string Logo { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Width

The width of the logo in points (1/72 of an inch)

Declaration
public int Width { get; set; }
Property Value
Type Description
System.Int32
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾