Jazz Soft Contact us?   JazzSoft@live.com     English   English  Japanese  Chinese (Traditional)  Chinese (Simlified)
Factory Automation & Yield Management Solution Provider 
Skip Navigation LinksHome > Products > Swing > Swing SECS II Reference > Properties > Show

Dorian.Core is added. Dorian now supports .NET 6 and 7.

Swing SECS II Reference   

Properties
Appearance
Array
BlockNumber
BorderStyle
DeviceID
EBit
Function
List
Msg
Pointer
PType
RBit
SessionID
Show
SourceID
Stream
SType
SystemBytes
TransactionID
Type
Value
ValueHex
WBit

Methods
Add
Init
Reply

Events

Show Property

If this property is True, it displays on screen whether port is opened or not. If this property is False, ActiveX control is not drawn only by applying in a background color. This property is a persistent property.

If node addition is performed in large quantities when Show Property is True, it takes very long time to redraw tree. Probably, it will be good to perform node addition after setting Show Property to False. If addition is completed, set Show Property to True.

Syntax

Visual Basic



Visual C++


Return Value

Example

Visual Basic

.Show = False
.Pointer = "1"
.Add SecsTypeList, ""
Dim nCnt as Integer
For nCnt = 1 to 100
  .Pointer = "1/" + Format$(nCnt)
  .Add SecsTypeAscii, "Something"
Next nCnt
.Show = True


Visual C++

m_msg.SetShow(false);
m_msg.SetPointer("1");
m_msg.Add(SecsTypeList,"");
for(int nCnt=0;nCnt<100;nCnt++)
{
  CString strBuf;
  strBuf.Format("1/%d",nCnt+1);
  m_msg.SetPointer(strBuf);
  m_msg.Add(SecsTypeAscii,"Something");
}
m_msg.SetShow(true);

Remarks

See Also

Contact us?   JazzSoft@live.com
  Copyright © 1997 - 2024 Jazz Soft, Inc.