clickhyperlink-ag凯发旗舰厅



com.spire.presentation
class clickhyperlink

java.lang.object
  extended by com.spire.presentation.clickhyperlink

public class clickhyperlink
extends java.lang.object

represents a hyperlink associated with a non-placeholder shape or text.


constructor summary
clickhyperlink()
           
clickhyperlink(boolean external, java.lang.string uri, java.lang.string action)
           
clickhyperlink(clickhyperlink source, java.lang.string targetframe, java.lang.string tooltip, boolean history, boolean stopsoundsonclick, boolean ishighlightclick)
          creates an instance of a hyperlink using another hyperlink as source, overriding secondary properties.
clickhyperlink(islide slide)
          creates an instance of a hyperlink.
clickhyperlink( source)
           
clickhyperlink(java.lang.string hyperlinkurl)
          creates an instance of a hyperlink.
 
method summary
 boolean equals(clickhyperlink hlink)
          indicates whether the two hyperlink instances are equal.
 boolean equals(java.lang.object obj)
          indicates whether the two hyperlink instances are equal.
 java.lang.string getaction()
           
 hyperlinkactiontype getactiontype()
          represents the type of hyperlink.
 java.lang.string getaddress()
          returns the internet address (url) to the target document.
static clickhyperlink getendshow()
           
 boolean getendsounds()
          indicates whether the sound should be stopped on hyperlink click.
static clickhyperlink getfirstslide()
           
 boolean gethistory()
          indicates whether the target will be added to a list.
 java.lang.string getinvalidurl()
           
static clickhyperlink getlastslide()
           
static clickhyperlink getlastviewedslide()
           
static clickhyperlink getnextslide()
           
static clickhyperlink getnoaction()
           
static clickhyperlink getotherfiles(java.lang.string filepath)
           
static clickhyperlink getotherpowerpointpresentation(java.lang.string filepath)
           
static clickhyperlink getpreviousslide()
           
 boolean getstopsoundonclick()
          determines whether the sound should be stopped on hyperlink click.
 java.lang.string gettargetframe()
          gets the frame within the parent html frameset read-only .
  gettargetslide()
          if the hyperlink targets specific slide returns this slide.
 java.lang.string gettooltip()
          returns or sets the screentip text of a hyperlink.
 int hashcode()
          serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
 boolean ishighlightclick()
          indicates whether the hyperlink should be highlighted on click.
static boolean op_equality(clickhyperlink hlink1, clickhyperlink hlink2)
          tests two hyperlinks for equality.
static boolean op_inequality(clickhyperlink hlink1, clickhyperlink hlink2)
          tests two hyperlinks for inequality.
 void setaddress(java.lang.string value)
          sets the internet address (url) to the target document.
 
constructor detail

clickhyperlink

public clickhyperlink(java.lang.string hyperlinkurl)
creates an instance of a hyperlink.
parameters:
hyperlinkurl - hyperlink url.

clickhyperlink

public clickhyperlink()

clickhyperlink

public clickhyperlink(islide slide)
creates an instance of a hyperlink.
parameters:
slide -
throws:
java.lang.exception

clickhyperlink

public clickhyperlink(clickhyperlink source,
                      java.lang.string targetframe,
                      java.lang.string tooltip,
                      boolean history,
                      boolean stopsoundsonclick,
                      boolean ishighlightclick)
creates an instance of a hyperlink using another hyperlink as source, overriding secondary properties.
parameters:
source - source hyperlink
targetframe - target frame
tooltip - tooltip text
history -
stopsoundsonclick -
ishighlightclick -

clickhyperlink

public clickhyperlink( source)

clickhyperlink

public clickhyperlink(boolean external,
                      java.lang.string uri,
                      java.lang.string action)
method detail

getnoaction

public static clickhyperlink getnoaction()
returns:
a special "do nothing" hyperlink. readonly hyperlink.

getnextslide

public static clickhyperlink getnextslide()
returns:
a hyperlink to the next slide. readonly .

getpreviousslide

public static clickhyperlink getpreviousslide()
returns:
returns a hyperlink to the previous slide. readonly .

getfirstslide

public static clickhyperlink getfirstslide()
returns:
returns a hyperlink to the first slide of the presentation. readonly .

getlastslide

public static clickhyperlink getlastslide()
returns:
returns a hyperlink to the last slide of the presentation. readonly .

getlastviewedslide

public static clickhyperlink getlastviewedslide()
returns:
returns a hyperlink to the last viewed slide. readonly .

getendshow

public static clickhyperlink getendshow()
returns:
returns a hyperlink which ends the show. readonly .

getotherpowerpointpresentation

public static clickhyperlink getotherpowerpointpresentation(java.lang.string filepath)
parameters:
filepath - : the file full path.
returns:
returns a hyperlink to other powerpoint presentation.

getotherfiles

public static clickhyperlink getotherfiles(java.lang.string filepath)
parameters:
filepath - : the file full path.
returns:
returns a hyperlink to other files.

getaddress

public java.lang.string getaddress()
returns the internet address (url) to the target document.
returns:

setaddress

public void setaddress(java.lang.string value)
sets the internet address (url) to the target document.

getinvalidurl

public java.lang.string getinvalidurl()

getaction

public java.lang.string getaction()

getactiontype

public hyperlinkactiontype getactiontype()
represents the type of hyperlink. read-only. readonly .
returns:

gettargetslide

public  gettargetslide()
if the hyperlink targets specific slide returns this slide. // readonly .
returns:

gettargetframe

public java.lang.string gettargetframe()
gets the frame within the parent html frameset read-only .
returns:

gettooltip

public java.lang.string gettooltip()
returns or sets the screentip text of a hyperlink. read-only .
returns:

gethistory

public boolean gethistory()
indicates whether the target will be added to a list. read-only .
returns:

ishighlightclick

public boolean ishighlightclick()
indicates whether the hyperlink should be highlighted on click. read-only .
returns:

getstopsoundonclick

public boolean getstopsoundonclick()
determines whether the sound should be stopped on hyperlink click. read-only .
returns:

getendsounds

public boolean getendsounds()
indicates whether the sound should be stopped on hyperlink click. read-only .
returns:

equals

public boolean equals(java.lang.object obj)
indicates whether the two hyperlink instances are equal.
overrides:
equals in class java.lang.object
parameters:
obj - the hyperlink to compare with the current hyperlink.
returns:

equals

public boolean equals(clickhyperlink hlink)
indicates whether the two hyperlink instances are equal.
parameters:
hlink - the hyperlink to compare with the current hyperlink.
returns:

op_equality

public static boolean op_equality(clickhyperlink hlink1,
                                  clickhyperlink hlink2)
tests two hyperlinks for equality.
parameters:
hlink1 - first hyperlink to be tested.
hlink2 - second hyperlink to be tested.
returns:
true if hyperlinks are equal.

op_inequality

public static boolean op_inequality(clickhyperlink hlink1,
                                    clickhyperlink hlink2)
tests two hyperlinks for inequality.
parameters:
hlink1 - first hyperlink to be tested.
hlink2 - second hyperlink to be tested.
returns:
false if hyperlinks are equal.

hashcode

public int hashcode()
serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
overrides:
hashcode in class java.lang.object
returns:
hash code for an url.


网站地图