Adobe Dreamweaver API Reference CS5 Bedienungsanleitung Seite 432

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 533
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 431
427
DREAMWEAVER API REFERENCE
Design
Last updated 8/27/2013
Arguments
None.
Returns
Nothing.
Example
The following example makes the distance feedback color of guides gray:
var currentDOM = dw.getDocumentDOM();
if (currentDOM.guidesDistanceColor != "#CCCCCC"){
currentDOM.guidesDistanceColor = "#CCCCCC";
}
dom.guidesLocked
Availability
Dreamweaver 8.
Description
This mutable Boolean property determines whether guides are locked in the document. You can set and get this
property.
Arguments
None.
Returns
Nothing.
Example
The following example locks guides if they are not locked:
var currentDOM = dw.getDocumentDOM();
if (currentDOM.guidesLocked == false) {
currentDOM.guidesLocked = true;
}
dom.guidesSnapToElements
Availability
Dreamweaver 8.
Description
This mutable Boolean property determines whether guides snap to elements in the document. You can set and get this
property.
Arguments
None.
Seitenansicht 431
1 2 ... 427 428 429 430 431 432 433 434 435 436 437 ... 532 533

Kommentare zu diesen Handbüchern

Keine Kommentare