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

24879763 2bda 06d9 8e30 408330fe413f

haplokuon edited this page May 6, 2023 · 1 revision

Subscript Property

netDxf 3.0.0 Library

Get or set if the text is subscript.

Definition

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

C#

public bool Subscript { get; set; }

VB

Public Property Subscript As Boolean
	Get
	Set

C++

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

F#

member Subscript : bool with get, set

Property Value

Boolean

Remarks

The Superscript and Subscript properties are mutually exclusive, if it is set to true the Superscript 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