Select to view content in your preferred language

Custom Check-Out Tool  (IArcPadExchangeTransaction2)

762
1
06-20-2011 10:51 AM
GuilhermeFerreira_da_Mata
Emerging Contributor
I am trying to create a custom check-out tool for ArcPad.

I discovered something in post: http://forums.esri.com/Thread.asp?c=34&f=2465&t=296113

IArcPadExchangeTransaction2 ex = new ArcPadExchangeClass();
IBasicMap basicMap = (((IMxDocument)m_app.Document).ActivatedView.FocusMap) as IBasicMap;
ex.CreateDataExportSession( true, basicMap, @"c:\temp\", false, "", "TESTOUTPUT", true );

IArcPadExport export = new ArcPadExportClass();
ILayer player = basicMap.get_Layer(0);
export.CheckoutFeatures( player, null, null, true, "", false, false );

But this  isn't enougth to help me! How can I create a check-out using the .NET libraries ? There is a documentation about ArcPad API?

thanks!
Tags (3)
0 Kudos
1 Reply
by Anonymous User
Not applicable
Hope this helps.  This subroutine works for me to check out.  It is attached
0 Kudos