ASP.NET Show Documentation - Properties

Properties: Styles, Settings, Transition, Size, Events

<%@ Register TagPrefix="obshow" Namespace="OboutInc.Show" Assembly="obout_Show_Net" %>

Properties - Styles

Name Description
propertyStyleFolder String. Path to the Show's style folder.
Optional.

Properties - Settings

Name Description
propertyID String. Component Id. Optional.
propertyShowType OboutInc.Show.ShowType enumeration.
The Show's sliding type.
All posible values of the property:
  • Show
  • Manual
Default value is Show. Optional.

See also Show and Manual examples.
propertyTransitionType OboutInc.Show.TransitionType enumeration.
The Show's sliding transition type.
All posible values of the property:
  • None - no transition effect
  • QuickScroll - quick scroll effect
  • Scrolling - scrolling effect
  • Fading - fading effect
Default value is None. Optional.

See also None, QuickScroll, Scrolling and Fading examples.
propertyImagesShowPath String. Path to folder with images. All the images will be loaded as panels into the show. Supported images types are 'jpg', 'gif' and 'png'.

See also Cosmic light show and ImagesShowPath examples.
propertyImagesShowPattern String. A tweak to the image directory functionality is to be able to provide a template for the images within the specified directory. For example, directory\small*.jpg.

See also ImagesShowPattern example.
propertyTimeBetweenPanels Int. The amount of time between each panel transition (1000 = 1 second).
Default value is 2000. Optional.

See also Time between panels transition example.
propertyStartTimeDelay Int. The amount of time on first panel load (1000 = 1 second).
Default value is the value of property TimeBetweenPanels. Optional.

See also Start time delay example.
propertySelectedPanel Int. Show's selected panel index.
Default value is 1. Optional.

See also Selected panel example.
propertyManualChanger Bool. Specifies if the Show's manual changer should be visible.
Default value is false. Optional.

See also Manual changer customize example.

Properties - Transition

Name Description
propertyFadingSpeed Int. Show's panels fading speed.
Is available when TransitionType is set to Fading.
Default value is 1000. Optional.

See also Fading customize example.
propertyFadingStep Int. Show's panels fading step.
Is available when TransitionType is set to Fading.
Default value is 3. Optional.

See also Fading customize example.
propertyScollDirection OboutInc.Show.ScrollDirection enumeration.
Scrolling direction of the Show's panels.
Is available when TransitionType is set to QuickScroll or to Scrolling.

All posible values of the property:
  • Left
  • Right
  • Top
  • Bottom
Default value is Left. Optional.

See also Scrolling customize example.
propertyScrollingSpeed Int. Show's panels scrolling speed.
Is available when TransitionType is set to Scrolling.
Default value is 100. Optional.

See also Scrolling customize example.
propertyScrollingStep Int. Show's panels scrolling step.
Is available when TransitionType is set to Scrolling.
Default value is 5. Optional.

See also Scrolling customize example.
propertyStopScrolling Bool. Specify if scrolling is paused when the mouse is over the Show.
Is available when ShowType is set to Show.
Default value is false. Optional.

See also Live quotes example.
propertyStopFading Bool. Specify if fading is paused when the mouse is over the Show.
Is available when ShowType is set to Show.
Default value is false. Optional.
propertyImagesFitAvailableSize Bool. Specify if the image panels will fit the available show size.
Is available only for image panels.
Default value is false. Optional.

See also ImagesFitAvailableSize tutorial.
propertyRefreshOnLoad Bool. Specify if the url panel is automatically reloaded each time is visible.
Is available only for url panels.
Default value is false. Optional.

Properties - Size

Name Description
propertyWidth String. Width of the Show's container.
Default value is 400px. Optional.

See also Show size tutorial.
propertyHeight String. Height of the Show's container.
Default value is 300px. Optional.

See also Show size tutorial.

Properties - Events

Name Description
propertyOnPanelChangeStartEvent String. The name of the client side event method to be executed on panel change start.
Default value is ob_show_OnPanelChangeStart.

Server code:
Show1.OnPanelChangeStartEvent = "StartEvent";

Client code:
function StartEvent(fromIndex, toIndex) { ...
propertyOnPanelChangeEndEvent String. The name of the client side event method to be executed on panel change end.
Default value is ob_show_OnPanelChangeEnd.

Server code:
Show1.OnPanelChangeEndEvent = "EndEvent";

Client code:
function EndEvent(fromIndex, toIndex) { ...