Struct TextFitArrayOption

Definition

Namespace:
Tizen.NUI.Text
Assembly:
Tizen.NUI.dll

A struct to pass data of TextFitArray's OptionList.

C#
Copy
public struct TextFitArrayOption
Remarks

The TextFitArrayOption struct is used as an item to TextFitArray's OptionList.
See TextFitArray.

Constructors

View Source

TextFitArrayOption(Single)

Constructor.

Declaration
C#
Copy
public TextFitArrayOption(float pointSize)
Parameters
Type Name Description
Single pointSize

The PointSize for TextFitArrayOption

View Source

TextFitArrayOption(Single, Nullable<Single>)

Constructor.

Declaration
C#
Copy
public TextFitArrayOption(float pointSize, float? minLineSize)
Parameters
Type Name Description
Single pointSize

The PointSize for TextFitArrayOption

Nullable<Single> minLineSize

The MinLineSize for TextFitArrayOption

Properties

View Source

MinLineSize

Min line size for text fit array.

Declaration
C#
Copy
public float? MinLineSize { get; set; }
Property Value
Type Description
Nullable<Single>
View Source

PointSize

Point size for text fit array.

Declaration
C#
Copy
public float PointSize { get; set; }
Property Value
Type Description
Single

Extension Methods