This member of WaveLinkScribblePad Object is supported on: CE
The Title property stores and retrieves a pre-defined WaveLinkWidget object for the WaveLinkScribblePad object. The Title property maintains the title bar display characteristics of the scribble pad object.
VB
WidgName = object.Title
object.Title = WidgName
VC++
HRESULT hr = object->get_Title(WaveLinkWidget *WidgName);
HRESULT hr = object->put_Title(WaveLinkWidget WidgName);
Return Values
WidgName |
The variable that returns the name of the WaveLinkWidget object |
Parameters
WidgName |
The name of the WaveLinkWidget object |
Remarks
Use the DisplayText property of the WaveLinkWidget object to change the display text that appears on the title bar. Currently, changing other widget properties for the title will have no effect.
Example
' VB Sample Code
Dim myScrib As New WaveLinkScribblePad
Dim myTitle As WaveLinkWidget
.
.
.
myTitle = myScrib.Title
myTitle.DisplayText = "Customer Signature"
Was this article useful?
The topic was:
Inaccurate
Incomplete
Not what I expected
Other