Ink.property DataWindow object property
Description
Properties that control the attributes of ink in an InkPicture
control or a column with the InkEdit edit style.
Controls
Column and InkPicture controls
Syntax
PowerBuilder dot notation:
1 |
<span>dw_control</span>.Object.<span>inkpicname</span>.Ink.<span>property</span> |
1 |
<span>dw_control</span>.Object.<span>columnname</span>.Ink.<span>property</span> |
Describe and Modify argument:
1 |
"<span>inkpicname</span>.Ink.<span>property </span>{ = <span>value </span>}" |
1 |
"<span>columnname</span>.Ink.<span>property </span>{ = <span>value </span>}" |
Parameter |
Description |
---|---|
inkpicname |
The name of an InkPicture control. |
columnname |
The name of a column that has the InkEdit |
property |
A property for the InkPicture control |
value |
The value to be assigned to the property. |
Property for Ink |
Value |
---|---|
AntiAliased |
A drawing attribute that specifies whether Values are:
Painter: InkAntiAliased option. |
Color |
A drawing attribute that specifies the Painter: InkColor option. |
Height |
A drawing attribute that specifies the Painter: InkHeight option. |
IgnorePressure |
A drawing attribute that specifies whether Values are:
Painter: IgnorePressure option. |
Pentip |
A drawing attribute that specifies whether Values are:
Painter: PenTip option. |
Transparency |
A drawing attribute that specifies the Painter: InkTransparency option. |
Width |
A drawing attribute that specifies the Painter: InkWidth option. |
Usage
In the painter
Select the control and set values in the Properties view,
Ink or InkPicture tab, InkAttributes section.
Examples
1 |
dw1.Object.inkpic1.Ink.Antialiased = true |
1 |
li_color = dw1.Describe("emp_status.Ink.Color") |