亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? gmlayout.tlh

?? GemoMedia 應(yīng)用 演示了其使用方法
?? TLH
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
    __declspec(property(get=GetAutophase,put=PutAutophase))
    VARIANT_BOOL Autophase;
    __declspec(property(get=GetLinearColor,put=PutLinearColor))
    enum ColorConstants LinearColor;
    __declspec(property(get=GetWidth,put=PutWidth))
    double Width;
    __declspec(property(get=GetUnits,put=PutUnits))
    enum StyleUnitsConstants Units;
    __declspec(property(get=GetDashGapCount,put=PutDashGapCount))
    long DashGapCount;
    __declspec(property(get=GetDashStrokePercent,put=PutDashStrokePercent))
    double DashStrokePercent;
    __declspec(property(get=GetLinearName,put=PutLinearName))
    _bstr_t LinearName;
    __declspec(property(get=GetDashName,put=PutDashName))
    _bstr_t DashName;

    //
    // Wrapper methods for error-handling
    //

    // Methods:
    HRESULT UseActiveStyle (
        long ForFutureUse );
    HRESULT SetDashGap (
        long DashCount,
        VARIANT * Dashes );
    HRESULT GetDashGap (
        long DashCount,
        VARIANT * Dashes );

    // Properties:
    VARIANT_BOOL GetAutophase ( );
    void PutAutophase ( VARIANT_BOOL _val );
    enum ColorConstants GetLinearColor ( );
    void PutLinearColor ( enum ColorConstants _val );
    double GetWidth ( );
    void PutWidth ( double _val );
    enum StyleUnitsConstants GetUnits ( );
    void PutUnits ( enum StyleUnitsConstants _val );
    long GetDashGapCount ( );
    void PutDashGapCount ( long _val );
    double GetDashStrokePercent ( );
    void PutDashStrokePercent ( double _val );
    _bstr_t GetLinearName ( );
    void PutLinearName ( _bstr_t _val );
    _bstr_t GetDashName ( );
    void PutDashName ( _bstr_t _val );
};

struct __declspec(uuid("8b12e346-1243-11d4-bf77-00104b62bfb6"))
AttributeSets : IDispatch
{
    //
    // Property data
    //

    __declspec(property(get=Get_Item))
    AttributeSetPtr _Item[];
    __declspec(property(get=GetItem))
    AttributeSetPtr Item[];
    __declspec(property(get=Get_NewEnum,put=Put_NewEnum))
    IUnknownPtr _NewEnum;
    __declspec(property(get=GetCount,put=PutCount))
    long Count;

    //
    // Wrapper methods for error-handling
    //

    // Methods:
    AttributeSetPtr GetItem (
        const _variant_t & index );
    AttributeSetPtr Get_Item (
        const _variant_t & index );
    AttributeSetPtr Add (
        _bstr_t Name );
    HRESULT Remove (
        _bstr_t Name );

    // Properties:
    IUnknownPtr Get_NewEnum ( );
    void Put_NewEnum ( IUnknown * _val );
    long GetCount ( );
    void PutCount ( long _val );
};

struct __declspec(uuid("8b12e345-1243-11d4-bf77-00104b62bfb6"))
AttributeSet : IDispatch
{
    //
    // Property data
    //

    __declspec(property(get=Get_Item))
    AttributePtr _Item[];
    __declspec(property(get=GetItem))
    AttributePtr Item[];
    __declspec(property(get=Get_NewEnum,put=Put_NewEnum))
    IUnknownPtr _NewEnum;
    __declspec(property(get=GetCount,put=PutCount))
    long Count;
    __declspec(property(get=GetSetName,put=PutSetName))
    _bstr_t SetName;

    //
    // Wrapper methods for error-handling
    //

    // Methods:
    AttributePtr Add (
        _bstr_t Name,
        enum AttributeTypeConstants Type );
    HRESULT Remove (
        _bstr_t Name );
    AttributePtr GetItem (
        const _variant_t & index );
    AttributePtr Get_Item (
        const _variant_t & index );

    // Properties:
    IUnknownPtr Get_NewEnum ( );
    void Put_NewEnum ( IUnknown * _val );
    long GetCount ( );
    void PutCount ( long _val );
    _bstr_t GetSetName ( );
    void PutSetName ( _bstr_t _val );
};

struct __declspec(uuid("8b12e344-1243-11d4-bf77-00104b62bfb6"))
Attribute : IDispatch
{
    //
    // Property data
    //

    __declspec(property(get=GetValue,put=PutValue))
    _variant_t Value;
    __declspec(property(get=Get_Value,put=Put_Value))
    _variant_t _Value;
    __declspec(property(get=GetName,put=PutName))
    _bstr_t Name;
    __declspec(property(get=GetAttributeType,put=PutAttributeType))
    enum AttributeTypeConstants AttributeType;
    __declspec(property(get=GetValueIsArray,put=PutValueIsArray))
    VARIANT_BOOL ValueIsArray;

    //
    // Wrapper methods for error-handling
    //

    // Methods:
    HRESULT GetArrayValue (
        VARIANT * ArrayValue );
    HRESULT SetArrayValue (
        const _variant_t & ArrayValue );

    // Properties:
    _variant_t GetValue ( );
    void PutValue ( const _variant_t & _val );
    _variant_t Get_Value ( );
    void Put_Value ( const _variant_t & _val );
    _bstr_t GetName ( );
    void PutName ( _bstr_t _val );
    enum AttributeTypeConstants GetAttributeType ( );
    void PutAttributeType ( enum AttributeTypeConstants _val );
    VARIANT_BOOL GetValueIsArray ( );
    void PutValueIsArray ( VARIANT_BOOL _val );
};

enum AttributeTypeConstants
{
    igAttrTypeInteger = 2,
    igAttrTypeLong = 3,
    igAttrTypeSingle = 4,
    igAttrTypeDouble = 5,
    igAttrTypeCurrency = 6,
    igAttrTypeDate = 7,
    igAttrTypeString = 8,
    igAttrTypeBoolean = 11,
    igAttrTypeByte = 17,
    igAttrTypeUnicode = 18,
    igAttrTypeArray = 8192,
    igAttrCurrency = 6,
    igAttrDate = 7,
    igAttrString = 8,
    igAttrBoolean = 11,
    igAttrUniChar = 18
};

struct __declspec(uuid("8b12e358-1243-11d4-bf77-00104b62bfb6"))
Lines2d : IDispatch
{
    //
    // Property data
    //

    __declspec(property(get=Get_Item))
    Line2dPtr _Item[];
    __declspec(property(get=GetItem))
    Line2dPtr Item[];
    __declspec(property(get=Get_NewEnum,put=Put_NewEnum))
    IUnknownPtr _NewEnum;
    __declspec(property(get=GetCount,put=PutCount))
    long Count;

    //
    // Wrapper methods for error-handling
    //

    // Methods:
    Line2dPtr AddBy2Points (
        double X1,
        double Y1,
        double X2,
        double Y2 );
    Line2dPtr AddByPointAngleLength (
        double x,
        double y,
        double Angle,
        double Length );
    Line2dPtr GetItem (
        const _variant_t & index );
    Line2dPtr Get_Item (
        const _variant_t & index );

    // Properties:
    IUnknownPtr Get_NewEnum ( );
    void Put_NewEnum ( IUnknown * _val );
    long GetCount ( );
    void PutCount ( long _val );
};

struct __declspec(uuid("8b12e35a-1243-11d4-bf77-00104b62bfb6"))
Line2d : IDispatch
{
    //
    // Property data
    //

    __declspec(property(get=Getindex,put=Putindex))
    long index;
    __declspec(property(get=GetType,put=PutType))
    enum ObjectType Type;
    __declspec(property(get=GetVisible,put=PutVisible))
    VARIANT_BOOL Visible;
    __declspec(property(get=GetZOrder,put=PutZOrder))
    long ZOrder;
    __declspec(property(get=GetKeyPointCount,put=PutKeyPointCount))
    long KeyPointCount;
    __declspec(property(get=GetLOLinearStyle,put=PutLOLinearStyle))
    LOLinearStylePtr LOLinearStyle;
    __declspec(property(get=GetLength,put=PutLength))
    double Length;
    __declspec(property(get=GetAngle,put=PutAngle))
    double Angle;

    //
    // Wrapper methods for error-handling
    //

    // Methods:
    HRESULT Range (
        double * XMinimum,
        double * YMinimum,
        double * XMaximum,
        double * YMaximum );
    HRESULT BringToFront ( );
    HRESULT BringForward ( );
    HRESULT SendToBack ( );
    HRESULT SendBackward ( );
    HRESULT Delete ( );
    HRESULT Move (
        double XFrom,
        double YFrom,
        double XTo,
        double YTo );
    HRESULT ScaleObject (
        double Factor );
    HRESULT Rotate (
        double Angle,
        double x,
        double y );
    IDispatchPtr Duplicate (
        const _variant_t & XDistance = vtMissing,
        const _variant_t & YDistance = vtMissing );
    HRESULT Select ( );
    HRESULT GetKeyPoint (
        long index,
        double * x,
        double * y,
        double * z,
        enum KeyPointType * KeyPointType,
        enum HandleType * HandleType );
    HRESULT SetKeyPoint (
        long index,
        double x,
        double y,
        double z );
    HRESULT GetStartPoint (
        double * x,
        double * y );
    HRESULT SetStartPoint (
        double x,
        double y );
    HRESULT GetEndPoint (
        double * x,
        double * y );
    HRESULT SetEndPoint (
        double x,
        double y );

    // Properties:
    long Getindex ( );
    void Putindex ( long _val );
    enum ObjectType GetType ( );
    void PutType ( enum ObjectType _val );
    VARIANT_BOOL GetVisible ( );
    void PutVisible ( VARIANT_BOOL _val );
    long GetZOrder ( );
    void PutZOrder ( long _val );
    long GetKeyPointCount ( );
    void PutKeyPointCount ( long _val );
    LOLinearStylePtr GetLOLinearStyle ( );
    void PutLOLinearStyle ( struct LOLinearStyle * _val );
    double GetLength ( );
    void PutLength ( double _val );
    double GetAngle ( );
    void PutAngle ( double _val );
};

struct __declspec(uuid("8b12e361-1243-11d4-bf77-00104b62bfb6"))
Points2d : IDispatch
{
    //
    // Property data
    //

    __declspec(property(get=Get_Item))
    Point2dPtr _Item[];
    __declspec(property(get=GetItem))
    Point2dPtr Item[];
    __declspec(property(get=Get_NewEnum,put=Put_NewEnum))
    IUnknownPtr _NewEnum;
    __declspec(property(get=GetCount,put=PutCount))
    long Count;

    //
    // Wrapper methods for error-handling
    //

    // Methods:
    Point2dPtr Add (
        double x,
        double y );
    Point2dPtr GetItem (
        const _variant_t & index );
    Point2dPtr Get_Item (
        const _variant_t & index );

    // Properties:
    IUnknownPtr Get_NewEnum ( );
    void Put_NewEnum ( IUnknown * _val );
    long GetCount ( );
    void PutCount ( long _val );
};

struct __declspec(uuid("8b12e35f-1243-11d4-bf77-00104b62bfb6"))
Point2d : IDispatch
{
    //
    // Property data
    //

    __declspec(property(get=Getindex,put=Putindex))
    long index;
    __declspec(property(get=GetType,put=PutType))
    enum ObjectType Type;
    __declspec(property(get=GetVisible,put=PutVisible))
    VARIANT_BOOL Visible;
    __declspec(property(get=GetZOrder,put=PutZOrder))
    long ZOrder;
    __declspec(property(get=GetKeyPointCount,put=PutKeyPointCount))
    long KeyPointCount;
    __declspec(property(get=GetLOLinearStyle,put=PutLOLinearStyle))
    LOLinearStylePtr LOLinearStyle;
    __declspec(property(get=Getx,put=Putx))
    double x;
    __declspec(property(get=Gety,put=Puty))

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品精品欲导航| 国产性色一区二区| 色婷婷国产精品综合在线观看| 国产精品综合一区二区三区| 麻豆精品一区二区三区| 日韩国产高清影视| 丝袜亚洲精品中文字幕一区| 亚洲成人一区在线| 日韩精品免费专区| 日日夜夜免费精品| 日本欧美一区二区| 亚洲小说欧美激情另类| 国产精品久久久一本精品 | 国产情人综合久久777777| 欧美精品一区二区在线观看| 久久久久久久网| 中文字幕欧美激情| 亚洲精品一二三四区| 偷偷要91色婷婷| 久久99精品国产麻豆不卡| 国产精品国产三级国产aⅴ入口| 久久爱www久久做| 中文字幕在线观看一区二区| 黄色成人免费在线| 亚洲一区在线观看免费观看电影高清 | 五月激情六月综合| 久久久精品日韩欧美| 国产视频一区在线观看 | 欧美日韩久久久一区| 一本色道久久加勒比精品 | 欧美电影免费观看高清完整版在线 | 国产成a人亚洲精| 久久电影网站中文字幕| 狠狠色丁香婷综合久久| 麻豆91在线观看| 91麻豆精品国产自产在线观看一区 | 日韩电影网1区2区| 免费在线观看视频一区| 国产在线视频一区二区三区| 欧美一区在线视频| a级精品国产片在线观看| 色综合av在线| 亚洲欧美另类久久久精品2019| 亚洲精品国产一区二区精华液 | 亚洲国产成人av好男人在线观看| 日韩精品一区二区三区在线播放 | 日韩视频在线你懂得| 91丨porny丨蝌蚪视频| 蜜桃av一区二区在线观看| 久久综合国产精品| 成人短视频下载| 色www精品视频在线观看| 国产一区二三区| 精品欧美久久久| 日韩电影在线看| 色吊一区二区三区| 国产精品小仙女| 日韩三级在线免费观看| 亚洲人吸女人奶水| 国产最新精品精品你懂的| 亚洲图片欧美一区| 国产日韩欧美精品电影三级在线| 国产最新精品精品你懂的| 精品人在线二区三区| 亚洲最新视频在线播放| 欧美性生活一区| 久久99久久99| 日韩欧美专区在线| 国产精品一区2区| 麻豆精品视频在线观看免费| 欧美一级久久久久久久大片| 亚洲免费在线视频| 精品国产免费一区二区三区香蕉| 精品一区二区在线看| 99精品欧美一区二区三区综合在线| 91麻豆精品国产| 亚洲国产va精品久久久不卡综合| 国产成人小视频| 国产日产欧美一区二区视频| 蜜臀久久久久久久| 欧美放荡的少妇| 紧缚捆绑精品一区二区| 日韩国产欧美视频| 自拍偷拍国产亚洲| 国产精品亲子乱子伦xxxx裸| 久久精品国产**网站演员| 欧美在线观看视频一区二区 | 久久综合久色欧美综合狠狠| 亚洲一区成人在线| 波多野结衣中文字幕一区二区三区 | 99久久久久久| 中文字幕精品—区二区四季| 国产精品一线二线三线精华| 欧美一区二区三区电影| 五月综合激情日本mⅴ| 欧美系列在线观看| 夜夜操天天操亚洲| 日本韩国欧美三级| 亚洲激情自拍视频| 色婷婷综合久久久久中文 | 亚洲与欧洲av电影| 在线观看91精品国产入口| 亚洲男人的天堂av| 欧美影片第一页| 婷婷一区二区三区| 欧美一区二区黄色| 久国产精品韩国三级视频| 欧美成人精品福利| 狠狠狠色丁香婷婷综合激情| 久久亚洲一区二区三区明星换脸| 极品少妇xxxx精品少妇偷拍| 久久奇米777| 成人精品gif动图一区| 亚洲日本在线天堂| 在线观看欧美黄色| 日韩avvvv在线播放| 日韩三级在线观看| 国产一区二区三区av电影| 国产欧美日韩在线| 色综合天天性综合| 亚洲第一二三四区| 精品久久人人做人人爱| 国产成人精品亚洲777人妖 | 日韩av电影天堂| 精品粉嫩超白一线天av| 国产成人精品www牛牛影视| 国产精品嫩草99a| 欧美亚一区二区| 久久成人av少妇免费| 国产清纯白嫩初高生在线观看91 | 日本一区二区三级电影在线观看| av影院午夜一区| 香蕉影视欧美成人| 欧美精品一区二区久久久| 成人激情开心网| 亚洲午夜av在线| 久久你懂得1024| 欧美亚洲综合网| 久久国产精品99精品国产| 国产精品伦理在线| 7777精品伊人久久久大香线蕉| 精品一区二区三区免费播放| 国产精品久久久久影院亚瑟| 欧美久久久久中文字幕| 国产精品一级二级三级| 亚洲欧美一区二区三区极速播放 | 中文字幕一区在线观看| 5月丁香婷婷综合| 成人综合在线观看| 午夜不卡在线视频| 中文字幕av不卡| 欧美日韩精品欧美日韩精品| 91福利精品第一导航| 久久精品国产99国产精品| 亚洲精品少妇30p| 久久丝袜美腿综合| 欧美人动与zoxxxx乱| 国产精品 欧美精品| 日韩不卡免费视频| 亚洲免费观看高清完整版在线观看熊 | 日韩久久精品一区| 94-欧美-setu| 国产一区二区中文字幕| 亚洲国产日韩一区二区| 欧美激情一区二区三区在线| 欧美一区二区三区在| 一本到三区不卡视频| 国产一区二区三区在线观看精品| 亚洲一区二区高清| 国产精品福利电影一区二区三区四区| 亚洲一区在线看| 欧美在线你懂的| 免费高清不卡av| 亚洲最大色网站| 国产精品国产自产拍在线| 亚洲成人动漫av| 在线观看亚洲精品视频| 成人白浆超碰人人人人| 久久国产精品72免费观看| 亚洲韩国精品一区| 亚洲婷婷综合色高清在线| 26uuu久久天堂性欧美| 欧美情侣在线播放| 在线欧美一区二区| 91在线国内视频| 成人一区二区三区视频| 国产乱理伦片在线观看夜一区| 日本亚洲最大的色成网站www| 一区二区三区四区在线播放| 国产精品免费免费| 国产精品人成在线观看免费 | 男女男精品视频| 亚洲aaa精品| 亚洲成av人影院在线观看网| 亚洲最大色网站| 亚洲在线观看免费视频| 一区二区三区四区精品在线视频| 最近日韩中文字幕| 亚洲激情欧美激情| 一区二区三区蜜桃|