Interface IVisibleMapObjectWrapped
- All Superinterfaces:
ICefObjectWrapper,ICefObjRef,IVisibleMapObject
- All Known Subinterfaces:
ICircleWrapped,IGroundOverlayWrapped,IInfoWindowWrapped,IMarkerWrapped,IPolygonWrapped,IPolylineWrapped,IRectangleWrapped
public interface IVisibleMapObjectWrapped extends IVisibleMapObject, ICefObjectWrapper
*** FOR INTERNAL USE ONLY!! DEVELOPER CODE SHOULD NEVER DIRECTLY USE THIS INTERFACE! ***
A wrapper for an ICefObject that has a notion of visibility
A wrapper for an ICefObject that has a notion of visibility
- Author:
- swong
-
Method Summary
Modifier and Type Method Description default booleangetVisible()Gets the object's current visibilitydefault voidsetVisible(boolean isVisible)Set this object's visibilityMethods inherited from interface provided.owlMaps.cefUtils.ICefObjectWrapper
addEvent, addEvent, call, callVoid, getCefId, getCefProperty, getWrappedCefObject, setCefProperty
-
Method Details
-
setVisible
default void setVisible(boolean isVisible)Set this object's visibility- Specified by:
setVisiblein interfaceIVisibleMapObject- Parameters:
isVisible- True if visible, false otherwise
-
getVisible
default boolean getVisible()Gets the object's current visibility- Specified by:
getVisiblein interfaceIVisibleMapObject- Returns:
- true if the object is visible, false otherwise.
-