GraphicsWriteText Method | |
Write text to graphics
Namespace:
SIC.Draw
Assembly:
SIC.Draw (in SIC.Draw.dll) Version: 19.1.21.1 (19.1.21.658)
Syntax public void WriteText(
string pText,
double pX,
double pY,
bool pVertical = false,
string pFontName = "Arial",
float pFontSize = 8f,
bool pBold = false
)
Public Sub WriteText (
pText As String,
pX As Double,
pY As Double,
Optional pVertical As Boolean = false,
Optional pFontName As String = "Arial",
Optional pFontSize As Single = 8F,
Optional pBold As Boolean = false
)
Parameters
- pText
- Type: SystemString
Text writes to graphics - pX
- Type: SystemDouble
X coordinate - pY
- Type: SystemDouble
Y coordinate - pVertical (Optional)
- Type: SystemBoolean
Text direction vertical - pFontName (Optional)
- Type: SystemString
Font name e.g. Arial - pFontSize (Optional)
- Type: SystemSingle
Font size e.g. 8 - pBold (Optional)
- Type: SystemBoolean
Bold switcher (true or false)
See Also