|
|
|
|
|
- Selection in a Word Processing control
Selection (Property) In french: Selection
The property Selection property displays the characteristics of the selection (or cursor): Versions 27 and later
MaSélection is diagSelection <- EDIAG_MonDiagramme.Sélection
IF MaSélection.Shape.Count > 0 THEN
FOR EACH stForme OF MaSélection.Shape
LIB_INFO_SELECTION = "Sélection de " + stForme.Nom +
" [ " + stForme.X + ", " + stForme.Y + " - " + stForme.Largeur +
"x" + stForme.Hauteur + " ]"
END
ELSE
LIB_INFO_SELECTION = "Cliquez sur une forme dans le diagramme pour connaître la sélection"
END
Syntax Versions 23 and later Versions 26 and later Versions 27 and later
Retrieving the properties of the selection in a Diagram Editor control Hide the details
<Result> = <Diagram Editor control>.selection
<Result>: diagSelection variable diagSelection variable describing the selection. <Diagram Editor control>: Control name Name of the Diagram Editor control.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|