Difference between revisions of "Arw GetTextAttribute"

From MultiCharts
Jump to navigation Jump to search
m (Reverted edits by 176.8.90.7 (talk) to last revision by 194.84.116.138)
 
Line 1: Line 1:
Returns a logical value indicating the setting for an attribute of the text in an arrow object with the specified ID number; returns a value of [[True]] if the attribute is set to on, and a value of [[False]]if the attribute is set to off or if the specified object ID number is invalid.  
+
Returns a logical value indicating the setting for an attribute of the text in an arrow object with the specified ID number.
 +
 
 +
Arw_GetTextAttribute returns a value of [[True]] if the attribute is set to on, and a value of [[False]] if the attribute is set to off or if the specified object ID number is invalid.  
  
 
The settings of the following attributes can be returned: border, bold, italic, strike-out, and underline.  
 
The settings of the following attributes can be returned: border, bold, italic, strike-out, and underline.  
 
   
 
   
==== Usage ====
+
== Usage ==
 
+
<syntaxhighlight>Arw_GetTextAttribute(ObjectID, Attribute)
<syntaxhighlight>Arw_GetTextAttribute(ObjectID,Attribute)
 
 
</syntaxhighlight>  
 
</syntaxhighlight>  
  
==== Parameters ====  
+
== Parameters ==
ObjectID - a numerical expression specifying the object ID number  
+
:'''ObjectID''' - a numerical expression specifying the object ID number.
 
+
:'''Attribute''' - a numerical expression specifying the attribute:
Attribute - a numerical expression specifying the attribute:
+
::'''0''' - border,
 
+
::'''1''' - bold,
0 - border
+
::'''2''' - italic,
+
::'''3''' - strike-out,
1 - bold
+
::'''4''' - underline.
 
2 - italic
 
 
3 - strike-out
 
 
 
4 - underline
 
  
==== Notes ====  
+
== Notes ==
An object-specific ID number is assigned by  
+
* An object-specific ID number is assigned by [[Arw_New]], [[Arw_New_s]], [[Arw_New_self]] or [[Arw_New_self_s]] when the arrow object is created.
[[Arw_New]] when the arrow object is created.  
+
* Use [[Arw_GetActive]], [[Arw_GetFirst]] or [[Arw_GetNext]] to get the object-specific ID number of an already created arrow.
 
   
 
   
==== Example ====
+
== Example ==
Assign a true/false value, indicating the setting of "bold" attribute for the arrow object with an ID number of 3, to ArwTxtBold variable:  
+
Assign a true/false value, indicating the setting of "bold" attribute for the arrow object with an ID number of 3, to the ArwTxtBold variable:  
  
 +
<syntaxhighlight>Variable: ArwTxtBold(False);
  
<syntaxhighlight>Variable:ArwTxtBold(False);
+
ArwTxtBold = Arw_GetTextAttribute(3, 1);
ArwTxtBold=Arw_GetTextAttribute(3,1);
 
 
</syntaxhighlight>
 
</syntaxhighlight>
 
 
  
 
[[Category:ArrowDrawing]]
 
[[Category:ArrowDrawing]]

Latest revision as of 08:12, 19 February 2012

Returns a logical value indicating the setting for an attribute of the text in an arrow object with the specified ID number.

Arw_GetTextAttribute returns a value of True if the attribute is set to on, and a value of False if the attribute is set to off or if the specified object ID number is invalid.

The settings of the following attributes can be returned: border, bold, italic, strike-out, and underline.

Usage

Arw_GetTextAttribute(ObjectID, Attribute)

Parameters

ObjectID - a numerical expression specifying the object ID number.
Attribute - a numerical expression specifying the attribute:
0 - border,
1 - bold,
2 - italic,
3 - strike-out,
4 - underline.

Notes

Example

Assign a true/false value, indicating the setting of "bold" attribute for the arrow object with an ID number of 3, to the ArwTxtBold variable:

Variable: ArwTxtBold(False); 

ArwTxtBold = Arw_GetTextAttribute(3, 1);