IsColumnVisible

Parent Previous Next

IsColumnVisible

This function returns a true/false value indicating if a column in the Multi Tag Viewer Object is visible or not.


Function Definition:


bool IsColumnVisible(int index);

Returns a boolean indicating if the given column is visible or not.


Params:

Int index: Int that represents the column in the Multi Tag Viewer Object(index starts with 0).


Return:

True: if the column is visible.

False: if the column is not visible.



To configure this function, follow the steps below:


1.   In an object event, configure the IsColumnVisible function: MultiTagViewerObjectName.IsColumnVisible(index);


2.   During the execution of RunTime, run the configured event.


Example :


In the graphic document, the user has one Multi Tag Viewer object (named as MultiTagViewer1). In a Button object (named as Button1) the user configures the MouseUp event with the following event:


bool visible = MultiTagViewer1.IsColumnVisible(1);


In this event, the Button1 will set the variable "visible" true/false value depending if the second column of the Multi Tag Viewer Object is visible or not(the fist Item of the Multi Tag Viewer Object has index 0, the second item has index 1 and so on).




  

 

Note: This property exists only to the following objects:

.     Multi Tag Viewer