Android Programming Press on the image to return to the main documentation page.

iSideMenu

List of types:

SideMenuController

SideMenuController

A view controller that allows showing a left and/or right pages in addition to the main NavigationController.

Events:

None

Members:


  CloseMenu

  CreateBarButton (Tag As String) As BarButtonItemWrapper

  Initialize (LeftPage As Page, MainController As NavigationControllerWrapper, RightPage As Page)

  IsInitialized As Boolean

  LeftMenuMaxWidth As Float

  OpenGesturesEnabled As Boolean

  OpenLeftMenu

  OpenRightMenu

  RightMenuMaxWidth As Float

  Tag As Object

Members description:

CloseMenu
Closes the visible menu.
CreateBarButton (Tag As String) As BarButtonItemWrapper
Creates a BarButton with three horizontal lines.
Initialize (LeftPage As Page, MainController As NavigationControllerWrapper, RightPage As Page)
Initializes the object.
LeftPage - The Page that holds the left menu. Pass Null to disable this menu.
MainController - The main navigation controller.
RightPage - The Page that holds the right menu. Pass Null to disable this menu.
IsInitialized As Boolean
Tests whether this object was initialized.
LeftMenuMaxWidth As Float
Gets or sets the left menu maximum width.
OpenGesturesEnabled As Boolean
Gets or sets whether the user can open the menus with a pan gesture.
OpenLeftMenu
Opens the left menu page.
OpenRightMenu
Opens the right menu page.
RightMenuMaxWidth As Float
Gets or sets the right menu maximum width.
Tag As Object
Gets or sets the Tag object. This is a placeholder for any object you like to tie to this object.
Top