Represents PSD text layer.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill.Codecs.AdvancedPsd (in Aurigma.GraphicsMill.Codecs.AdvancedPsd.dll)

Syntax

Visual Basic

Public NotInheritable Class AdvancedPsdTextFrame _
	Inherits AdvancedPsdFrame

C#

public sealed class AdvancedPsdTextFrame : AdvancedPsdFrame

Remarks

The text layer is a particular case of a raster layer. It always contains the bitmap with rasterized text string, as well as:

Typically you get an instance of this class in the following way:

  1. Iterate through the PSD file layers (you will get them as AdvancedPsdFrame).
  2. Check the Type property value.
  3. If it is Text, cast the frame class to AdvancedPsdTextFrame.

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.