|
|
|
|
|
- Selection in a Word Processing control
Selection (Property) In french: Selection
The property Selection property displays the characteristics of the selection (or cursor): in a Word Processing control. Note: This selection is located in the part being edited (body, header or footer). in a Spreadsheet control. in an HTML Editor control - in a Diagram Editor control.
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
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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|