15 lines
196 B
OpenEdge ABL
15 lines
196 B
OpenEdge ABL
|
|
||
|
%include class_drawsegment.h
|
||
|
%extend DRAWSEGMENT
|
||
|
{
|
||
|
%pythoncode
|
||
|
%{
|
||
|
def GetShapeStr(self):
|
||
|
return self.ShowShape(self.GetShape())
|
||
|
%}
|
||
|
}
|
||
|
%{
|
||
|
#include <class_drawsegment.h>
|
||
|
%}
|
||
|
|