Function tip_GetSpanOffsets


Prototype: tip_GetSpanOffsets(Span);
Arguments:

Span: A Span object (CDM_Span)
start: A variable name, where the start value of the specified span will be placed. (string)
end: A variable name, where the end value of the specified span will be placed. (string)

C++ API Sections
Tcl API Sections
Description
Return Value
Notes
See Also
Index

Description:

This function will place the values of the both span start and end of the provided span in the two specified variable names. Each span object is a set of exactly two integers, named as "start" and "end".

Return Value:

This function will place the two Offsets contained in the provided Span object (the start and end of the span) into the two variables pointed by the two provided variable names.

Notes:

This function is equivelant to the following Tcl code:
set start [tip_GetStart $Span]
set end [tip_GetEnd $Span]

This function is equivelant to CDM_GetSpanOffsets (C++ API).

See Also:

tip_CreateSpan, tip_GetStart, tip_GetEnd


Generated by: petasis@aias on Wed Aug 16 10:31:45 PM EEST 2006.