SKYENGINE API  参考手册返回目录  

 

const char* mr_editGetText(int32 edit)



Description
获取编辑框内容。
Parameters

Name Description
edit 编辑框句柄

Return Value

非NULL                          编辑框内容的起始地址(编辑框的内容指针,大端unicode编码
NULL                             返回

Remarks

获取编辑框内容,unicode编码。调用该函数后,SkyEngine平台会在平台内部建立一个内容的备份,调用者不需保证在编辑框释放后内容仍然有效。该函数会在编辑框释放之前调用。

Example

/*mrp code*/

const char *wstr = NULL;

wstr = mrc_editGetText( hEdit ); //hEdit为mrc_editCreate创建的句柄

See Also

mr_editCreate


Copyright ?2005-20010 SKY-MOBI

返回目录