ArtGrp::View (Interface: ArtGrp)
 
Views an Article Group card.
 
void View ()
 
Remarks
This method can only be used if user interface is allowed (parameter bWithUserInterface is set to true in the Logon method), because a record can only be viewed using the dialog.
 
See Also
CreateArtGrp
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pArtGrp->SeekBySysNum (smLast, 0))
    pArtGrp->View ();

C#
 
// View the last inserted record
if (oArtGrp.SeekBySysNum (eSeekMode.smLast, 0))
    oArtGrp.View ();

VBS
 
' View the last inserted record
If oArtGrp.SeekBySysNum(smLast, 0) Then
    Call oArtGrp.View()
End If

VB.NET
 
' View the last inserted record
If oArtGrp.SeekBySysNum(eSeekMode.smLast, 0) Then
    oArtGrp.View()
End If