Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

8aae61f6 f0ff a7a8 1f7d 8ba5323ecea8

haplokuon edited this page May 6, 2023 · 1 revision

Superscript Property

netDxf 3.0.0 Library

Get or set if the text is superscript.

Definition

Namespace: netDxf.Entities
Assembly: netDxf (in netDxf.dll) Version: 3.0.0

C#

public bool Superscript { get; set; }

VB

Public Property Superscript As Boolean
	Get
	Set

C++

public:
property bool Superscript {
	bool get ();
	void set (bool value);
}

F#

member Superscript : bool with get, set

Property Value

Boolean

Remarks

The Superscript and subscript properties are mutually exclusive, if it is set to true the Subscript property will be set to false automatically.
Internally, superscripts and subscripts are written as stacking text (like fractions); therefore the characters '/' and '#' are reserved if you need to write them you must write '/' and '#' respectively.

See Also

Reference

MTextFormattingOptions Class
netDxf.Entities Namespace

Clone this wiki locally