Class EmfPlusStringFormatData

Class EmfPlusStringFormatData

Namespace: Aspose.Imaging.FileFormats.Emf.EmfPlus.Objects
Assembly: Aspose.Imaging.dll (25.7.0)

The EmfPlusStringFormatData object specifies tab stops and character positions for a graphics string.

public sealed class EmfPlusStringFormatData : EmfPlusStructureObjectType
{
    private short m_index;
    private EmfPlusPropertySet m_properties;
    public short Index
    {
        get { return m_index; }
    }
    public EmfPlusPropertySet Properties
    {
        get { return m_properties; }
    }
}
public sealed class EmfPlusStringFormatData : EmfPlusStructureObjectType
{
    private short m_index;
    private EmfPlusPropertySet m_properties;
    public short Index
    {
        get { return this.m_index; }
    }
    public EmfPlusPropertySet Properties
    {
        get { return this.m_properties; }
    }
}

Inheritance

object MetaObject EmfPlusObject EmfPlusStructureObjectType EmfPlusStringFormatData

Inherited Members

object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

EmfPlusStringFormatData()

public EmfPlusStringFormatData()
   {
   }

Properties

CharRange

Gets or sets an optional array of RangeCount EmfPlusCharacterRangeobjects that specify the range of character positionswithin a string of text. The bounding region is definedby the area of the display that is occupied by a groupof characters specified by the character range.This field MUST be present if the value of the RangeCountfield in the EmfPlusStringFormat object is greater than 0.

public EmfPlusCharacterRange[] CharRange
{
    get;
    set;
}

Property Value

EmfPlusCharacterRange []

TabStops

Gets or sets an optional array of floating-point values that specifythe optional tab stop locations for this object. Each tabstop value represents the number of spaces between tabstops or, for the first tab stop, the number of spacesbetween the beginning of a line of text and the first tab stop.This field MUST be present if the value of the TabStopCountfield in the EmfPlusStringFormat object is greater than 0.

public float[] TabStops
{
    get
    {
    }
    set
    {
    }
}

Property Value

float []

 English