当前位置: 首页>>代码示例>>C#>>正文


C# Y_类代码示例

本文整理汇总了C#中Y_的典型用法代码示例。如果您正苦于以下问题:C# Y_类的具体用法?C# Y_怎么用?C# Y_使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Y_类属于命名空间,在下文中一共展示了Y_类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: _positionLegendItems

 /// <summary>
 /// Displays items vertically in a legend.
 /// </summary>
 protected void _positionLegendItems(Y_.Array items, Y_.DataType_.Number maxWidth, Y_.DataType_.Number maxHeight, Y_.DataType_.Number totalWidth, Y_.DataType_.Number totalHeight, Y_.DataType_.Number padding, Y_.DataType_.Number horizontalGap, Y_.DataType_.Number verticalGap, object hAlign, object vAlign){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:4,代码来源:VerticalLegendLayout.cs

示例2: apply

 /// <summary>
 /// Applies a schema to an array of data, returning a normalized object
 /// with results in the `results` property. The `meta` property of the
 /// response object is present for consistency, but is assigned an empty
 /// object.  If the input data is absent or not an array, an `error`
 /// property will be added.
 /// The input array is expected to contain objects, arrays, or strings.
 /// If _schema_ is not specified or _schema.resultFields_ is not an array,
 /// `response.results` will be assigned the input array unchanged.
 /// When a _schema_ is specified, the following will occur:
 /// If the input array contains strings, they will be copied as-is into the
 /// `response.results` array.
 /// If the input array contains arrays, `response.results` will contain an
 /// array of objects with key:value pairs assuming the fields in
 /// _schema.resultFields_ are ordered in accordance with the data array
 /// values.
 /// If the input array contains objects, the identified
 /// _schema.resultFields_ will be used to extract a value from those
 /// objects for the output result.
 /// _schema.resultFields_ field identifiers are objects with the following properties:
 /// * `key`   : <strong>(required)</strong> The locator name (String)
 /// * `parser`: A function or the name of a function on `Y.Parsers` used
 /// to convert the input value into a normalized type.  Parser
 /// functions are passed the value as input and are expected to
 /// return a value.
 /// If no value parsing is needed, you can use strings as identifiers
 /// instead of objects (see example below).
 /// </summary>
 public object apply(Y_.Array data){return null;}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:29,代码来源:Array.cs

示例3: _update

 /// <summary>
 /// AOP method, invoked after the host's _uiScrollTo method,
 /// to position and resize the scroll bars
 /// </summary>
 protected void _update(Y_.DataType_.Number x, Y_.DataType_.Number y, Y_.DataType_.Number duration, object easing){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:5,代码来源:ScrollViewScrollbars.cs

示例4: lineTo

 /// <summary>
 /// Draws a line segment using the current line style from the current drawing position to the specified x and y coordinates.
 /// </summary>
 public void lineTo(Y_.DataType_.Number point1, Y_.DataType_.Number point2){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:4,代码来源:VMLDrawing.cs

示例5: quadraticCurveTo

 /// <summary>
 /// Draws a quadratic bezier curve.
 /// </summary>
 public void quadraticCurveTo(Y_.DataType_.Number cpx, Y_.DataType_.Number cpy, Y_.DataType_.Number x, Y_.DataType_.Number y){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:4,代码来源:VMLDrawing.cs

示例6: drawCircle

 /// <summary>
 /// Draws a circle. Used internally by `CanvasCircle` class.
 /// </summary>
 protected void drawCircle(Y_.DataType_.Number x, Y_.DataType_.Number y, Y_.DataType_.Number r){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:4,代码来源:VMLDrawing.cs

示例7: drawEllipse

 /// <summary>
 /// Draws an ellipse.
 /// </summary>
 protected void drawEllipse(Y_.DataType_.Number x, Y_.DataType_.Number y, Y_.DataType_.Number w, Y_.DataType_.Number h){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:4,代码来源:VMLDrawing.cs

示例8: rad2deg

 /// <summary>
 /// Converts a radian value to a degree.
 /// </summary>
 public Y_.DataType_.Number rad2deg(Y_.DataType_.Number rad){return null;}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:4,代码来源:UploaderHTML5.cs

示例9: scalarMultiply

 /// <summary>
 /// Multiplies a matrix by a numeric value.
 /// </summary>
 public Y_.Array scalarMultiply(Y_.Array matrix, Y_.DataType_.Number multiplier){return null;}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:4,代码来源:UploaderHTML5.cs

示例10: slice

 public NodeList slice(Y_.DataType_.Number begin, Y_.DataType_.Number end){return null;}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:1,代码来源:NodeList.cs

示例11: splice

 public NodeList splice(Y_.DataType_.Number index, Y_.DataType_.Number howMany){return null;}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:1,代码来源:NodeList.cs

示例12: item

 /// <summary>
 /// Retrieves the Node instance at the given index.
 /// </summary>
 public Node item(Y_.DataType_.Number index){return null;}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:4,代码来源:NodeList.cs

示例13: getStartPoint

 /// <summary>
 /// Returns the starting y-coordinate for a column of legend items.
 /// </summary>
 protected Y_.DataType_.Number getStartPoint(Y_.DataType_.Number h, Y_.DataType_.Number totalHeight, object align, object padding){return null;}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:4,代码来源:VerticalLegendLayout.cs

示例14: _setColumnArrays

 /// <summary>
 /// Creates column and total height arrays used for displaying multiple columns of
 /// legend items based on the items, available height and verticalGap for the legend.
 /// </summary>
 protected void _setColumnArrays(Y_.Array items, Y_.DataType_.Number limit, Y_.DataType_.Number verticalGap){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:5,代码来源:VerticalLegendLayout.cs

示例15: getMinors

 /// <summary>
 /// Returns a matrix of minors based on a matrix, column index and row index.
 /// </summary>
 public Y_.Array getMinors(Y_.Array matrix, Y_.DataType_.Number columnIndex, Y_.DataType_.Number rowIndex){return null;}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:4,代码来源:UploaderHTML5.cs


注:本文中的Y_类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。