PdcClockLine.Text
Jump to navigation
Jump to search
Declaration
Text as String
Description
Returns or changes the text
Notes
This property returns or changes the text of the clock line.
Code example
This code example returns the text of clockline with ID "456".
Sub sGetClockLineText
dim objClockLine
dim intID
intID = "456"
set objClockLine = pdc.ProductRegistration.ClockLines.Open(intID)
if IsValid(objClockLine) then
msgbox objClockLine.Text
end if
set objClockLine = nothing
End Sub
Availability
Available since july 2008 (from version 3.8).